omxGetManifestModelParameters {OpenMx}R Documentation

Returns the parameter vector of the expected manifest model

Description

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.

Usage

omxGetManifestModelParameters(model)

Arguments

model

an mxModel

Details

The returned vector is not named because the model manifest parameters are typically not stored explicitly.

Value

a paramter vector

See Also

mxGetExpected

Examples

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)

[Package OpenMx version 2.3.1 Index]