Hello,
I am currently working with the dataset mathpnl.***. In order to get the effect that expenditures have on test score passing rate of fourth graders, I regress math4 on real expenditures, using fixed effects regression. Since I suppose expenditures to be correlated with the idiosyncratic error, I want to use IV Regression. My current problem is, that I am having two potentially endogenous explanatory variables rexpp and rexpp_1. My instruments are the foundation grant and the interaction of foundation grant and dummy variable.
Unfortunately Stata is omitting the coefficient of rexpp.
I really don't know how to continue and change my code in order to get an estimator for rexpp.
I really would appreciate some tips of help because I am somehow stuck.
Thank you very much.
xtivreg math4 (lrexpp lrexpp_1 = lfound l95 l96 l97 l98) $controliv, fe
note: l95 omitted because of collinearity
note: l96 omitted because of collinearity
note: l97 omitted because of collinearity
note: l98 omitted because of collinearity
Fixed-effects (within) IV regression Number of obs = 2,159
Group variable: distid Number of groups = 550
R-sq: Obs per group:
within = 0.0010 min = 1
between = 0.0403 avg = 3.9
overall = 0.0090 max = 4
Wald chi2(5) = 72134.88
corr(u_i, Xb) = -0.8181 Prob > chi2 = 0.0000
------------------------------------------------------------------------------
math4 | Coef. Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
lrexpp | 0 (omitted)
lrexpp_1 | 63.72222 4.292348 14.85 0.000 55.30937 72.13507
lunch | .8404932 .2171041 3.87 0.000 .4149769 1.26601
lunchsq | -.0026656 .0028577 -0.93 0.351 -.0082667 .0029354
lenrol | 76.54679 38.45923 1.99 0.047 1.168077 151.9255
lenrolsq | -4.949612 2.746436 -1.80 0.072 -10.33253 .4333028
_cons | -796.191 149.5337 -5.32 0.000 -1089.272 -503.1103
-------------+----------------------------------------------------------------
sigma_u | 22.561662
sigma_e | 11.198609
rho | .80233064 (fraction of variance due to u_i)
------------------------------------------------------------------------------
F test that all u_i=0: F(549,1604) = 3.27 Prob > F = 0.0000
------------------------------------------------------------------------------
Instrumented: lrexpp lrexpp_1
Instruments: lunch lunchsq lenrol lenrolsq lfound
------------------------------------------------------------------------------
I am currently working with the dataset mathpnl.***. In order to get the effect that expenditures have on test score passing rate of fourth graders, I regress math4 on real expenditures, using fixed effects regression. Since I suppose expenditures to be correlated with the idiosyncratic error, I want to use IV Regression. My current problem is, that I am having two potentially endogenous explanatory variables rexpp and rexpp_1. My instruments are the foundation grant and the interaction of foundation grant and dummy variable.
Unfortunately Stata is omitting the coefficient of rexpp.
I really don't know how to continue and change my code in order to get an estimator for rexpp.
I really would appreciate some tips of help because I am somehow stuck.
Thank you very much.
xtivreg math4 (lrexpp lrexpp_1 = lfound l95 l96 l97 l98) $controliv, fe
note: l95 omitted because of collinearity
note: l96 omitted because of collinearity
note: l97 omitted because of collinearity
note: l98 omitted because of collinearity
Fixed-effects (within) IV regression Number of obs = 2,159
Group variable: distid Number of groups = 550
R-sq: Obs per group:
within = 0.0010 min = 1
between = 0.0403 avg = 3.9
overall = 0.0090 max = 4
Wald chi2(5) = 72134.88
corr(u_i, Xb) = -0.8181 Prob > chi2 = 0.0000
------------------------------------------------------------------------------
math4 | Coef. Std. Err. z P>|z| [95% Conf. Interval]
-------------+----------------------------------------------------------------
lrexpp | 0 (omitted)
lrexpp_1 | 63.72222 4.292348 14.85 0.000 55.30937 72.13507
lunch | .8404932 .2171041 3.87 0.000 .4149769 1.26601
lunchsq | -.0026656 .0028577 -0.93 0.351 -.0082667 .0029354
lenrol | 76.54679 38.45923 1.99 0.047 1.168077 151.9255
lenrolsq | -4.949612 2.746436 -1.80 0.072 -10.33253 .4333028
_cons | -796.191 149.5337 -5.32 0.000 -1089.272 -503.1103
-------------+----------------------------------------------------------------
sigma_u | 22.561662
sigma_e | 11.198609
rho | .80233064 (fraction of variance due to u_i)
------------------------------------------------------------------------------
F test that all u_i=0: F(549,1604) = 3.27 Prob > F = 0.0000
------------------------------------------------------------------------------
Instrumented: lrexpp lrexpp_1
Instruments: lunch lunchsq lenrol lenrolsq lfound
------------------------------------------------------------------------------
Comment