--
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.
To unsubscribe from this group and stop receiving emails from it, send an email to lavaan+unsubscribe@googlegroups.com.
Ned--May I ask for some clarification? By "endogeneity," do you mean that the residual for F4 is correlated with one or more predictors in the same equation--here, F2 and F3? [...]
On 15 Nov 2017, at 15.57, Ned Kock <ned...@gmail.com> wrote:Thanks Mikko. Actually, I've tried this before; adding F4 ~~ F2 and F4 ~~ F3 leads to an identification problem, and adding only F4 ~~ F2 to severely biased results for at least one of the regression coefficients.One possible solution is to create an instrumental variable I4 as indicated below, and then use it in the regression equation for F4. The results are then identical to those of the 2SLS analysis that I conducted.
mModel <- '# instrumental variableI4 =~ F1
# path modelF2 ~ F1F3 ~ F1 + F2F4 ~ F2 + F3 + I4
‘
In this specific case, this is equivalent to adding F1 as a predictor of F4. However, the link F1 -> F4 does not exist at the population, and thus I would get a false positive if I had added that link.I just thought that there was a better way to do this with lavaan. The approach above would not work if the instrumental variable were more complex; e.g., aggregated two or more instruments. In econometrics, instrumental variables are typically created as composites.Ned
--
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+unsubscribe@googlegroups.com.
On 15 Nov 2017, at 16.50, Ned Kock <ned...@gmail.com> wrote:
Mikko: In a 2SLS analysis, in-model endogeneity is controlled for by the creation of instrumental variables (IVs) for certain endogenous variables, and the inclusion of the IVs in regression equations. The classic approach used in econometrics is to create IVs as composites that aggregate instruments. The instruments are exogenous variables that influence the endogenous variables in question only via indirect effects.
Ned,While your explanation has some correct elements, it is not entirely correct: In 2sls, you do not include IVs in the regression. Instead, in the first stage you regress all your original explanatory variables on the instruments, and then you use these fitted values as replacements for the original explanatory variables in the second stage regression.But this post finally clarified what is it that you want to do:Your population model wasF2 ~ F1F3 ~ F1 + F2F4 ~ F1 + F2 + F3
[...]
On 16 Nov 2017, at 14.56, Ned Kock <ned...@gmail.com> wrote:Mikko, my population model was:F2 ~ F1F3 ~ F1 + F2F4 ~ F2 + F3
The absence of the link F1 -> F4 at the population level is what gave rise to endogeneity, and the need for a simple 2SLS.
Best, Ned
On Thursday, November 16, 2017 at 1:57:01 AM UTC-6, Mikko Rönkkö wrote:Ned,While your explanation has some correct elements, it is not entirely correct: In 2sls, you do not include IVs in the regression. Instead, in the first stage you regress all your original explanatory variables on the instruments, and then you use these fitted values as replacements for the original explanatory variables in the second stage regression.But this post finally clarified what is it that you want to do:Your population model wasF2 ~ F1F3 ~ F1 + F2F4 ~ F1 + F2 + F3[...]