Applying a definition variable to a factor mean
Posted on

Forums
I have the following problem.
i estimated a single common factor model in twin pairs:
correlated factors within twinpairs, correlated residuals between measurements done at equal timepoints within twinpairs.
now i want to model the factor means by intoducing a definition variable.
i got the single factor twin model working, which essentially is a two factor model one factor for each twin. Now i need to introduce a definition variable that influences the factor mean. I have found some MX scripts for this but i need it to work in openMX.
How to go about this. I have read all help files on both the factor models and the definition variables but found no reference on definition variables related to factor mean moddeling.
I guess that you are using
It is pretty much the same sort of thing for the mxMatrix() specification, except that you need to specify that an element of a matrix is specified with a data.defvar label. The matrix algebra to get from the factor mean to the observed variables is basically one half of the predicted covariance statement, with a vector of factor means to multiply at the end.
mxAlgebra(alpha + beta * defVars, name = "M")
# Factor means equal m x 1 alpha plus m x p beta times p x 1 vector of definition variables defVars
# Note, beta matrix may be patterned with some zero cells (e.g., twin 1 factor 1 on def vars of twin 2) or twin 1 - twin 2 equalities
mxAlgebra(L %*% M, name = "obsMean")
# Observed means are factor loadings times factor means
Hope this is enough to get you started.
Log in or register to post comments
In reply to I guess that you are using by neale
Never Mind, Problem solved!
Log in or register to post comments