showOptions {CoCoRaw} | R Documentation |
Print on standard output the options of the CoCo object.
showOptions(hit = "all", dump = FALSE, data = NULL, object = .object.of.thing(data = data, ...), ...)
hit |
A character string "all" , "formats" ,
"tests" , "exact" , "fix" , "ips" ,
"cips" , "mips" , "em" , "old" ,
"specification" , "factors" , "observations" ,
"data" , "limits" , "files" , "other" ,
"search" , or "eh" . |
dump |
Logical, if dump is TRUE, then write CoCo commands for
setting the options. Only implemented for CoCoCg. |
data |
( See exportCoCo . ) |
object |
See exportCoCo . |
... |
( Additional arguments to generate the CoCo object
from the data argument. See propertyModel . ) |
TRUE
Jens Henrik Badsberg
Badsberg, J.H.: A guide to CoCo, JSS, 2001 ( http://www.jstatsoft.org/v06/i04/ ) and Badsberg, J.H.: Xlisp+CoCo, Aalborg University, 1996.
library(CoCoCg); data(Rats); CoCoObject <- makeCoCoCg(); enterDataFrame(Rats, object = CoCoObject); showOptions(object = CoCoObject); showOptions("specification", object = CoCoObject); sinkCoCo(file.name = "Diary.tmp", type = "diary", object = CoCoObject); showOptions("formats", object = CoCoObject); showOptions("formats", dump = TRUE, object = CoCoObject); sinkCoCo(file.name = "Diary.tmp", type = "diary", object = CoCoObject); showOptions("tests", object = CoCoObject); showOptions("tests", dump = TRUE, object = CoCoObject); endCoCo(object = CoCoObject);