Hi Sebastian,
I need to confirm with you. Please correct me if I am wrong.
When I need to make sure that my instruments variable is strictly exogenous, I need to check difference-in Hansen Test. But when I want to check whether my instrument variable is over, I can check Hansen test of overidentification. If this is true, it means your concern above is related to difference- in the Hansen test. I need your confirmation about this.
Below, I use equation (level) for IV and here is the code:
the result is below
I want the instrument variable is on the level not the growth or difference
Appreciate your help
I need to confirm with you. Please correct me if I am wrong.
When I need to make sure that my instruments variable is strictly exogenous, I need to check difference-in Hansen Test. But when I want to check whether my instrument variable is over, I can check Hansen test of overidentification. If this is true, it means your concern above is related to difference- in the Hansen test. I need your confirmation about this.
Below, I use equation (level) for IV and here is the code:
Code:
xtabond2 ROATotAsset L.RDI L.ROATotAsset Leverage FirmsSIZE Y2007 Y2009-Y2017, gmm(RDI, lag(2 4) equation(diff)) gmm(ROATotAsset, lag(1 1) equation(level)) iv(Leverage FirmsSIZE Y2007 Y2009-Y2017, equation(level)) small twostep robust
Code:
Dynamic panel-data estimation, two-step system GMM ------------------------------------------------------------------------------ Group variable: ASX_ID Number of obs = 5349 Time variable : Year Number of groups = 487 Number of instruments = 50 Obs per group: min = 7 F(14, 486) = 6.85 avg = 10.98 Prob > F = 0.000 max = 11 ------------------------------------------------------------------------------ | Corrected ROATotAsset | Coef. Std. Err. t P>|t| [95% Conf. Interval] -------------+---------------------------------------------------------------- RDI | L1. | .0002143 .0002117 1.01 0.312 -.0002016 .0006302 | ROATotAsset | L1. | .3185845 .1487461 2.14 0.033 .0263197 .6108492 | Leverage | -.0040793 .0016696 -2.44 0.015 -.0073598 -.0007989 FirmsSIZE | .0166592 .0090541 1.84 0.066 -.0011308 .0344492 Y2007 | .0513919 .0396925 1.29 0.196 -.0265982 .129382 Y2009 | -.0796341 .0400902 -1.99 0.048 -.1584057 -.0008625 Y2010 | -.0067393 .0285693 -0.24 0.814 -.0628738 .0493952 Y2011 | .0256532 .0241647 1.06 0.289 -.021827 .0731334 Y2012 | -.0054812 .0228277 -0.24 0.810 -.0503343 .039372 Y2013 | -.056461 .0311257 -1.81 0.070 -.1176186 .0046965 Y2014 | -.1078993 .0348192 -3.10 0.002 -.176314 -.0394846 Y2015 | -.2262245 .104225 -2.17 0.030 -.4310118 -.0214372 Y2016 | -.1658626 .1111863 -1.49 0.136 -.3843278 .0526025 Y2017 | -.0825125 .132348 -0.62 0.533 -.3425573 .1775324 _cons | -.1751213 .0624856 -2.80 0.005 -.2978967 -.052346 ------------------------------------------------------------------------------ Instruments for first differences equation GMM-type (missing=0, separate instruments for each period unless collapsed) L(2/4).RDI Instruments for levels equation Standard Leverage FirmsSIZE Y2007 Y2009 Y2010 Y2011 Y2012 Y2013 Y2014 Y2015 Y2016 Y2017 _cons GMM-type (missing=0, separate instruments for each period unless collapsed) DL.ROATotAsset ------------------------------------------------------------------------------ Arellano-Bond test for AR(1) in first differences: z = -2.71 Pr > z = 0.007 Arellano-Bond test for AR(2) in first differences: z = -0.40 Pr > z = 0.687 ------------------------------------------------------------------------------ Sargan test of overid. restrictions: chi2(35) = 281.42 Prob > chi2 = 0.000 (Not robust, but not weakened by many instruments.) Hansen test of overid. restrictions: chi2(35) = 39.04 Prob > chi2 = 0.293 (Robust, but weakened by many instruments.) Difference-in-Hansen tests of exogeneity of instrument subsets: GMM instruments for levels Hansen test excluding group: chi2(25) = 23.94 Prob > chi2 = 0.523 Difference (null H = exogenous): chi2(10) = 15.10 Prob > chi2 = 0.129 gmm(RDI, eq(diff) lag(2 4)) Hansen test excluding group: chi2(8) = 7.82 Prob > chi2 = 0.451 Difference (null H = exogenous): chi2(27) = 31.22 Prob > chi2 = 0.262 gmm(ROATotAsset, eq(level) lag(1 1)) Hansen test excluding group: chi2(25) = 23.94 Prob > chi2 = 0.523 Difference (null H = exogenous): chi2(10) = 15.10 Prob > chi2 = 0.129 iv(Leverage FirmsSIZE Y2007 Y2009 Y2010 Y2011 Y2012 Y2013 Y2014 Y2015 Y2016 Y2017, eq(level)) Hansen test excluding group: chi2(23) = 21.12 Prob > chi2 = 0.574 Difference (null H = exogenous): chi2(12) = 17.92 Prob > chi2 = 0.118 .
I want the instrument variable is on the level not the growth or difference
Appreciate your help
Comment