showTests {CoCoRaw} | R Documentation |
Print on standard output all the stored tests in the CoCo object.
showTests(data = NULL, object = .object.of.thing(data = data, ...), ...)
data |
See exportCoCo . |
object |
See exportCoCo . |
... |
Additional arguments to generate the CoCo object
from the data argument. See propertyModel . |
TRUE
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.
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.
optionsCoCo
,
showTest
, showDeviance
,
returnTest
, showTest
, eh
,
backward
and forward
.
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);