showOptions {CoCoRaw}R Documentation

Show the options of the CoCo object

Description

Print on standard output the options of the CoCo object.

Usage

showOptions(hit = "all", dump = FALSE, data = NULL, 
            object = .object.of.thing(data = data, ...), ...)

Arguments

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. )

Value

TRUE

Author(s)

Jens Henrik Badsberg

References

Badsberg, J.H.: A guide to CoCo, JSS, 2001 ( http://www.jstatsoft.org/v06/i04/ ) and Badsberg, J.H.: Xlisp+CoCo, Aalborg University, 1996.

See Also

optionsCoCo.

Examples

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);

[Package Contents]