I have a model with 3 composite variables.
If I run the model without defining any variances and covariances on the composite, the model fits without errors but I get Std.lv & Std.all of the covariance between the composites = Inf. What does this mean?
In addition, the correlation of the composite (lavInspect(fit, "cor.lv")) has values smaller than -1. Which I think indicates illogical result. Right?
When I define the variances and covariances of the composites to certain values, I can get model fit, but I receive warning “lavaan WARNING: starting values imply a correlation larger than 1”. But the |correlation| is less than 1. Would it be right to ignore the warning?
Thanks!
--
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 view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/feea6b07-5d41-4c9a-b509-0a8b1e64a308%40googlegroups.com.
--
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 view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/8a63a890-b156-404c-a6b9-368009c2cae3%40googlegroups.com.
mod.1l <- '
# Composites
pH <~ 1*pH_Outlet + pH_td_in + Sh_pH_Outlet
EndoP <~ 1*pH + Temp + SunRad8d
ExoP <~ 1*PP_td_in + Crane_Count
#Regrression
TDP2TP ~ EndoP + ExoP + Sh_TDP2TP + Chl + Rain8d
Chl ~ Sh_Chl + TDP2TP + NO3toTN + EndoP
NH4toTN ~ Crane_Count + NH4_td_in + NO3toTN + Temp + Chl
NO3toTN ~ Rain8d + pH + SO4_Outlet + Chl
#Covariances
NH4toTN ~~ NO3toTN
# Define variances and covariances for composites (currently disabled)
#EndoP ~~ -0.6*ExoP
#pH ~~ -0.3*ExoP
#pH ~~ 0.5*EndoP
#EndoP ~~ 0.7*EndoP
#ExoP ~~ 0.04*ExoP
#pH ~~ 0.01*pH
'
--
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 view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/7022e21c-0f1a-4b4b-989a-b52bbf4c3b2b%40googlegroups.com.
--
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 view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/7022e21c-0f1a-4b4b-989a-b52bbf4c3b2b%40googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to lav...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to lav...@googlegroups.com.
To unsubscribe from this group and stop receiving emails from it, send an email to lavaan+un...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/77f352f2-1802-4b16-94aa-3361b41c1254%40googlegroups.com.
On 21 Aug 2019, at 12:32 , balal izanloo <b.ez...@gmail.com> wrote:
As Edward said, Lavaan in not appropriate for formative model use another package or software for your analysis. HTH
On Wed, Aug 21, 2019, 11:00 Shajar <shaj...@gmail.com> wrote:
I know formative measures are not common in social sciences, but in ecology it is more common. see James B. Grace, 2006, and also Bill Shipley, 2014 for example.In my case the construct EndoP, for example, is not reflected by Temperature and pH but rather caused by them. So this situation is not right for latent variable. I can have direct links between the exogenous measures and the endogenous measure but composite make more sense and actually behaves better for my data.
My original question was - what does infinite std covariance mean?
To view this discussion on the web visit https://groups.google.com/d/msgid/lavaan/CAKpMYbK1mgFgzZYDVLhA3mu8Gq%3D%3DyJq9JrxjZYoymVMp_BgoTA%40mail.gmail.com.
#pH <~ 1*pH_Outlet + pH_td_in + Sh_pH_Outlet
pH =~ 0
pH ~ 1*pH_Outlet + pH_td_in + Sh_pH_OutletEnter
Shajar,
If you are concerned that the composite syntax is not doing what you expect, you can create a composite without using the composite connective and compare the results.
#pH <~ 1*pH_Outlet + pH_td_in + Sh_pH_Outlet
pH =~ 0
pH ~ 1*pH_Outlet + pH_td_in + Sh_pH_Outlet