Last chance! 50% off unlimited learning
Sale ends in
Read in an Mplus input file, convert it to lavaan syntax, and fit the model.
mplus2lavaan(inpfile, run = TRUE)
The filename (including a full path) of the Mplus input file. The data (as referred to in the Mplus input file) should be in the same directory as the Mplus input file.
Whether to run the specified Mplus input syntax (TRUE
) or
only to parse and convert the syntax (FALSE
).
A lavaan
object with the fitted results of the Mplus model. The parsed
and converted Mplus syntax is preserved in the @external
slot of the lavaan
object in the $mplus.inp
element. If run
is FALSE
, a list
of converted
syntax is returned.
# NOT RUN {
out <- mplus2lavaan("ex5.1.inp")
summary(out)
# }
Run the code above in your browser using DataLab