| omxGetManifestModelParameters {OpenMx} | R Documentation |
The manifest model excludes any latent variables or processes. For RAM and LISREL models, the manifest model contains only the manifest variables with free means, covariance, and thresholds.
omxGetManifestModelParameters(model)
model |
an mxModel |
The returned vector is not named because the model manifest parameters are typically not stored explicitly.
a paramter vector
require(OpenMx)
manifests <- paste("x", 1:5, sep="")
latents <- c("G")
factorModel <- mxModel("One Factor",
type="RAM",
manifestVars = manifests,
latentVars = latents,
mxPath(from=latents, to=manifests),
mxPath(from=manifests, arrows=2),
mxPath(from=latents, arrows=2,
free=FALSE, values=1.0),
mxPath(from = 'one', to = manifests))
omxGetManifestModelParameters(factorModel)