summary-MxModel {OpenMx} | R Documentation |
This function returns summary statistics of a model. It is usually invoked after a model has been run through the optimizer.
summary(object, ...)
object |
A MxModel object. |
... |
Any number of named arguments (see below). |
The following named arguments are supported by the summary method:
The OpenMx User's guide can be found at http://openmx.psyc.virginia.edu/documentation.
model <- mxModel() modelOut <- mxRun(model) # compute a summary and store in variable "statistics" statistics <- summary(modelOut) # specify a saturated likelihood for testing summary(modelOut, SaturatedLikelihood=300)