Dear all,
I am using an REIV using the command "xtivreg, re". I have two endogenous variables, y2 and y3 (y3 is an interaction of y2 with z2, and z2 is assumed to be exogenous), and two instrumental variables.
Jeff Wooldridge explains this in Section 11.2 of his MIT press book (Econometric Analysis of Cross Section and Panel Data) for one endogenous variable. He also gives an example of how to do it in Stata in one of the Statalist posts in 2017.
My question is if I can apply the same procedure in the case of two endogenous explanatory variables (y2 and y3) and two instruments?
In this case, are the t-statistics on v2hat2 and v2hat3 the tests of the null that y2 and y3 are exogenous?
Are there any other tests that I might perform in this case?
Best regards,
Mehrzad
I am using an REIV using the command "xtivreg, re". I have two endogenous variables, y2 and y3 (y3 is an interaction of y2 with z2, and z2 is assumed to be exogenous), and two instrumental variables.
Jeff Wooldridge explains this in Section 11.2 of his MIT press book (Econometric Analysis of Cross Section and Panel Data) for one endogenous variable. He also gives an example of how to do it in Stata in one of the Statalist posts in 2017.
Originally posted by Jeff Wooldridge
View Post
My question is if I can apply the same procedure in the case of two endogenous explanatory variables (y2 and y3) and two instruments?
Code:
reg y2 z1 z2 ... zL predict v2hat2, resid reg y3 z1 z2 ... zL predict v2hat3, resid xtreg y1 y2 v2hat2 y3 v2hat3 z1 z2 ... zM, re vce(cluster id)
Are there any other tests that I might perform in this case?
Best regards,
Mehrzad
Comment