Dear all,
Could you help me? I am using xtabond command in Stata 14.0.
I am estimating a demand function of agricultural government expenditure using panel data. My code is:
After this, I simply type,
Then I run the same code above, I got,
I think the difference between the two outcomes should be a digit-change of the coefficient of emp_ag.
Why?
Any comments are welcome.
Could you help me? I am using xtabond command in Stata 14.0.
I am estimating a demand function of agricultural government expenditure using panel data. My code is:
Code:
. xtabond r_gp, endogenous(r_gdpag_pc r_gdpag_pc_r emp_ag) noconstant twostep artests(2) Arellano-Bond dynamic panel-data estimation Number of obs = 44 Group variable: country Number of groups = 4 Time variable: year Obs per group: min = 11 avg = 11 max = 11 Number of instruments = 44 Wald chi2(4) = 976.66 Prob > chi2 = 0.0000 Two-step results ------------------------------------------------------------------------------ r_gp | Coef. Std. Err. z P>|z| [95% Conf. Interval] -------------+---------------------------------------------------------------- r_gp | L1. | -.9924786 1.548533 -0.64 0.522 -4.027547 2.04259 | r_gdpag_pc | -16.24451 10.98417 -1.48 0.139 -37.7731 5.284072 r_gdpag_pc_r | 41.53995 28.2373 1.47 0.141 -13.80413 96.88404 emp_ag | .1012755 .1223274 0.83 0.408 -.1384818 .3410329 ------------------------------------------------------------------------------
Code:
replace emp_ag = emp_ag / 1000
Code:
xtabond r_gp, endogenous(r_gdpag_pc r_gdpag_pc_r emp_ag) noconstant twostep artests(2) Arellano-Bond dynamic panel-data estimation Number of obs = 44 Group variable: country Number of groups = 4 Time variable: year Obs per group: min = 11 avg = 11 max = 11 Number of instruments = 44 Wald chi2(4) = 1320.68 Prob > chi2 = 0.0000 Two-step results ------------------------------------------------------------------------------ r_gp | Coef. Std. Err. z P>|z| [95% Conf. Interval] -------------+---------------------------------------------------------------- r_gp | L1. | -1.64613 1.62434 -1.01 0.311 -4.829778 1.537518 | r_gdpag_pc | -12.40606 10.11577 -1.23 0.220 -32.23261 7.420486 r_gdpag_pc_r | 25.01959 23.9783 1.04 0.297 -21.97701 72.01619 emp_ag | .0011247 .0012443 0.90 0.366 -.0013141 .0035635 ------------------------------------------------------------------------------
Why?
Any comments are welcome.
Comment