假设我符合 lavaan 中的模型:
# model
model <- '
L1 =~ x1 + x2
'
# fit & summary
fit <- lavaan(model=model1, model.type="sem", data=PE_test)
summary(fit)
如何为每种情况访问潜在变量(L1)的估算值? 我正在寻找某种 fit $ coeff 使用 str(fit)但到目前为止我还没有成功。
有什么建议吗?
答案 0 :(得分:2)
predict
函数将返回潜在变量得分估计值。例如,
LatentScoreEstimates <- predict(fit)