Hugo Harada Adaptativa Inteligência Educacional S.A. | |
lavInspect(fit,what = 'est')$theta
lavInspect(fit,what = 'cov.ov')



--
You received this message because you are subscribed to the Google Groups "lavaan" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lavaan+un...@googlegroups.com.
To post to this group, send email to lav...@googlegroups.com.
Visit this group at https://groups.google.com/group/lavaan.
For more options, visit https://groups.google.com/d/optout.


This is a matrix of parameters. Specifically, it is the residual covariance matrix of observed variables.I can think of two ways to interpret your answer. The residual does not seem to imply Sample - Implied
Parameterization = "theta" would set var(e_i) =1, correct?Parameterization = "delta" would set var(x*_i) =1, correct?
If so, I cannot understand why the simple experiment below does not give different results?
HS9 <- HolzingerSwineford1939[,c("x1","x2","x3","x4","x5",
"x6","x7","x8","x9")]
HSbinary <- as.data.frame( lapply(HS9, cut, 2, labels=FALSE) )
HS.model <- ' visual =~ x1 + x2 + x3
textual =~ x4 + x5 + x6
speed =~ x7 + x8 + x9 '
fit <- cfa(HS.model, data=HSbinary, ordered=names(HSbinary))
lavInspect(fit, 'est')$theta
lavInspect(update(fit, parameterization = "theta"), 'est')$theta--
You received this message because you are subscribed to the Google Groups "lavaan" group.
To unsubscribe from this group and stop receiving emails from it, send an email to lavaan+un...@googlegroups.com.
To post to this group, send email to lav...@googlegroups.com.
Visit this group at https://groups.google.com/group/lavaan.
For more options, visit https://groups.google.com/d/optout.