showTests {CoCoRaw}R Documentation

Show all the stored tests of a CoCo object

Description

Print on standard output all the stored tests in the CoCo object.

Usage

showTests(data = NULL, object = .object.of.thing(data = data, ...), ...)

Arguments

data See exportCoCo.
object See exportCoCo.
... Additional arguments to generate the CoCo object from the data argument. See propertyModel.

Value

TRUE

Note

Reuse of tests in the CoCo object can be turned of by optionsCoCo(reuse.tests=FALSE). Thus no tests are inserted into the test list of the CoCo object.

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, showTest, showDeviance, returnTest, showTest, eh, backward and forward.

Examples

library(CoCoCg);
data(Rats);
CoCoObject <- makeCoCoCg();
enterDataFrame(Rats, object = CoCoObject);
fullModel <- makeModel(enterModel("*", object = CoCoObject));

# Generate some models, here by "backward":
backward(recursive = TRUE, headlong = TRUE,
         coherent = TRUE, follow = TRUE, object = CoCoObject);

# Show the model list:
showModel("all", object = CoCoObject);

showTests(object = CoCoObject);

endCoCo(object = CoCoObject);

[Package CoCoRaw version 0.1.6.5 Index]