Hi,
I am working on a CFA model and I want to extract factor loadings with more than 3 digits from the results. Before using Mplusautomation, I specified OUTPUT = SVALUES in the inp file so the results would output the parameters with more than 3 digits. But when I specified it in r like this, I couldn't find the section from the result list. Is there any other way to specify this? Or may other ways to extract higher digits loadings? Thank you!
m_basic <- mplusObject(
TITLE = "Single Model;",
MODEL =
"exe BY item1-9;
exe @1;",
ANALYSIS =
"ESTIMATOR=WLSMV;
PARAMETERIZATION=THETA;",
VARIABLE =
"USEVARIABLES ARE item1-9;
CATEGORICAL = ALL;",
OUTPUT = "STDYX SVALUES;",
rdata = wrap2_exe)
res <- mplusModeler(m_basic,
modelout="single_model.inp",
check=TRUE, run = TRUE, hashfilename = FALSE)