Hi,
I'm currently attempting to calculate a first-difference GMM estimator that is from "A reassessment of the relationship between Inequality and Growth" Forbes 2000.
The standard specification has a fully balanced panel (N=63, T=8);

Where;
Growth (grate_5) = 5 year geometric average of real GDP per-capita
Gini (gini_net) = Gini Coefficient at the beginning of each period
GDP (gdp_pc) = GDP per-capita at the beginning of each period
Prim (schl_avg) = Mean years of schooling at the beginning of each period
u = error term
The GMM specification follows:

The code I have used and its output follows;
xtset scode time_dumm,yearly
panel variable: scode (strongly balanced)
time variable: time_dumm, 1 to 8
delta: 1 year
xtabond2 grate_5 L.grate_5 gdp_pc schl_avg gini_net, gmm (grate_5 schl_avg gini_net gdp_pc, lag(2 6)) small robust noleveleq
Dynamic panel-data estimation, one-step difference GMM
------------------------------------------------------------------------------
Group variable: scode Number of obs = 372
Time variable : time_dumm Number of groups = 62
Number of instruments = 80 Obs per group: min = 6
F(4, 62) = 8.41 avg = 6.00
Prob > F = 0.000 max = 6
------------------------------------------------------------------------------
| Robust
grate_5 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
grate_5 |
L1. | .1586901 .0703611 2.26 0.028 .0180403 .29934
|
gdp_pc | -2.779144 .6150112 -4.52 0.000 -4.008534 -1.549754
schl_avg | 13.81221 2.536023 5.45 0.000 8.742769 18.88164
gini_net | 20.17881 11.48194 1.76 0.084 -2.773259 43.13088
------------------------------------------------------------------------------
Instruments for first differences equation
GMM-type (missing=0, separate instruments for each period unless collapsed)
L(2/6).(grate_5 schl_avg gini_net gdp_pc)
------------------------------------------------------------------------------
Arellano-Bond test for AR(1) in first differences: z = -4.85 Pr > z = 0.000
Arellano-Bond test for AR(2) in first differences: z = -0.29 Pr > z = 0.773
------------------------------------------------------------------------------
Sargan test of overid. restrictions: chi2(76) = 131.23 Prob > chi2 = 0.000
(Not robust, but not weakened by many instruments.)
Hansen test of overid. restrictions: chi2(76) = 58.51 Prob > chi2 = 0.932
(Robust, but weakened by many instruments.)
The tests return the statistics that I would like for GMM--no 2nd order auto-correlation and overid restrictions are valid). However, I'm unsure if this is estimating the GMM specification shown above?
I hope this is enough information, if not please don't hesitate to ask.
Thanks in advance,
Ben
I'm currently attempting to calculate a first-difference GMM estimator that is from "A reassessment of the relationship between Inequality and Growth" Forbes 2000.
The standard specification has a fully balanced panel (N=63, T=8);
Where;
Growth (grate_5) = 5 year geometric average of real GDP per-capita
Gini (gini_net) = Gini Coefficient at the beginning of each period
GDP (gdp_pc) = GDP per-capita at the beginning of each period
Prim (schl_avg) = Mean years of schooling at the beginning of each period
u = error term
The GMM specification follows:
The code I have used and its output follows;
xtset scode time_dumm,yearly
panel variable: scode (strongly balanced)
time variable: time_dumm, 1 to 8
delta: 1 year
xtabond2 grate_5 L.grate_5 gdp_pc schl_avg gini_net, gmm (grate_5 schl_avg gini_net gdp_pc, lag(2 6)) small robust noleveleq
Dynamic panel-data estimation, one-step difference GMM
------------------------------------------------------------------------------
Group variable: scode Number of obs = 372
Time variable : time_dumm Number of groups = 62
Number of instruments = 80 Obs per group: min = 6
F(4, 62) = 8.41 avg = 6.00
Prob > F = 0.000 max = 6
------------------------------------------------------------------------------
| Robust
grate_5 | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
grate_5 |
L1. | .1586901 .0703611 2.26 0.028 .0180403 .29934
|
gdp_pc | -2.779144 .6150112 -4.52 0.000 -4.008534 -1.549754
schl_avg | 13.81221 2.536023 5.45 0.000 8.742769 18.88164
gini_net | 20.17881 11.48194 1.76 0.084 -2.773259 43.13088
------------------------------------------------------------------------------
Instruments for first differences equation
GMM-type (missing=0, separate instruments for each period unless collapsed)
L(2/6).(grate_5 schl_avg gini_net gdp_pc)
------------------------------------------------------------------------------
Arellano-Bond test for AR(1) in first differences: z = -4.85 Pr > z = 0.000
Arellano-Bond test for AR(2) in first differences: z = -0.29 Pr > z = 0.773
------------------------------------------------------------------------------
Sargan test of overid. restrictions: chi2(76) = 131.23 Prob > chi2 = 0.000
(Not robust, but not weakened by many instruments.)
Hansen test of overid. restrictions: chi2(76) = 58.51 Prob > chi2 = 0.932
(Robust, but weakened by many instruments.)
The tests return the statistics that I would like for GMM--no 2nd order auto-correlation and overid restrictions are valid). However, I'm unsure if this is estimating the GMM specification shown above?
I hope this is enough information, if not please don't hesitate to ask.
Thanks in advance,
Ben
Comment