summary-MxModel {OpenMx}R Documentation

Model Summary

Description

This function returns summary statistics of a model. It is usually invoked after a model has been run through the optimizer.

Usage

summary(object, ...)

Arguments

object A MxModel object.
... Any number of named arguments (see below).

Details

The following named arguments are supported by the summary method:

numObs
Numeric. Specify the total number of observations for the model.
numStats
Numeric. Specify the total number of observed statistics for the model.
SaturatedLikelihood
Numeric or MxModel object. Specify a saturated likelihood for testing.
indep
Logical. Set to FALSE to ignore independent submodels in summary.

References

The OpenMx User's guide can be found at http://openmx.psyc.virginia.edu/documentation.

Examples


  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)


[Package OpenMx version 1.0.0-1448 Index]