- model.name
A string for the model name in mxModel
.
- RAM
A RAM object including a list of matrices of the model
returned from lavaan2RAM
.
- Amatrix
If RAM
is not specified, an Amatrix
is
required.
- Smatrix
If RAM
is not specified, an Smatrix
is
required.
- Fmatrix
If RAM
is not specified, an Fmatrix
is
required.
- Mmatrix
If RAM
is not specified, an Mmatrix
is
required.
- Vmatrix
A V-known matrix of the variables. If it is specified, it
will be added into the Smatrix
.
- data
A data frame or matrix of data. Alternatively, users may
provide a mxData
object.
- intervals.type
Either z
(default if missing) or
LB
. If it is z
, it calculates the 95% confidence
intervals (CIs) based on the estimated standard error. If it
is LB
, it calculates the 95% likelihood-based CIs on the
parameter estimates.
- mx.algebras
A list of mxMatrix
or
mxAlgebra
objects on the Amatrix
,
Smatrix
, Fmatrx
, Mmatrix
, Id
(identity
matrix), expCov
(expected covariance matrix of the observed and
latent variables), and expMean
(expected means of the observed
and latent variables). It can be used to
define new functions of parameters and their LBCIs. For example, if
the regression coefficients to calculate an indirect effect are stored
in A[1,2] and A[1,3], we may define list(ind=mxAlgebra(Amatrix[1,2]*Amatrix[1,3], name="ind"))
- mxModel.Args
A list of arguments passed to mxModel
.
- mxRun.Args
A list of arguments passed to mxRun
.
- var.names
If it is NULL
(the default), the var.names
are extracted from Fmatrix$values
.
- suppressWarnings
Logical. If it is TRUE
, warnings are
suppressed. This argument is passed to mxRun
.
- silent
Logical. An argument is passed to mxRun
- run
Logical. If FALSE
, only return the mx model without running the analysis.
- ...
Not used yet.