R-package lavaan(结构方程模型) - 如何访问潜在变量的估计?

时间:2012-12-29 19:51:09

标签: r

假设我符合 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)但到目前为止我还没有成功。

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

predict函数将返回潜在变量得分估计值。例如,

LatentScoreEstimates <- predict(fit)