Hi Statalisters!!
Please I would like you to help with a certain problem I have : I noticed that two time variables 2007&2011 are significant in my regression (i'm guessing due to the financial and Eurozone crisis). But how do I interpret the coefficient and sign on each time variable for my paper and also do i mentoned the R-sq (im a bit confused as to its validity in this fixed effect model.
Fixed-effects (within) regression Number of obs = 107
Group variable: id Number of groups = 10
R-sq: within = 0.8373 Obs per group: min = 7
between = 0.0185 avg = 10.7
overall = 0.0933 max = 12
F(17,80) = 24.21
corr(u_i, Xb) = -0.7157 Prob > F = 0.0000
---------------------------------------------------------------------------------
une_rt_a | Coef. Std. Err. t P>|t| [95% Conf. Interval]
----------------+----------------------------------------------------------------
ubdur | .0178783 .0093775 1.91 0.060 -.0007835 .0365401
replacementrate | -11.31995 7.618282 -1.49 0.141 -26.48081 3.84092
uegen | -1.547902 .4918411 -3.15 0.002 -2.526697 -.5691071
unionden | -.1612843 .1412985 -1.14 0.257 -.4424773 .1199086
lmp_exp | 4.840894 .3651561 13.26 0.000 4.11421 5.567578
tax_wedge | -.0481105 .1508529 -0.32 0.751 -.3483174 .2520964
|
year |
2001 | -.5060035 .5743391 -0.88 0.381 -1.648975 .6369677
2002 | -.2499434 .606667 -0.41 0.681 -1.457249 .9573623
2003 | -.2116938 .6104098 -0.35 0.730 -1.426448 1.00306
2004 | .11122 .5931715 0.19 0.852 -1.069229 1.291669
2005 | .3910291 .6053263 0.65 0.520 -.8136087 1.595667
2006 | .9255652 .6233933 1.48 0.142 -.3150269 2.166157
2007 | 1.151597 .626483 1.84 0.070 -.0951442 2.398338
2008 | .7085658 .6347024 1.12 0.268 -.5545322 1.971664
2009 | .2741273 .6757321 0.41 0.686 -1.070622 1.618877
2010 | 1.163628 .6834175 1.70 0.093 -.1964165 2.523672
2011 | 1.940984 .6812735 2.85 0.006 .5852064 3.296761
|
_cons | 23.06657 5.909102 3.90 0.000 11.30709 34.82606
----------------+----------------------------------------------------------------------------------------
sigma_u | 4.0626822
sigma_e | 1.0688825
rho | .93526085 (fraction of variance due to u_i)
F test that all u_i=0: F(9, 80) = 19.08 Prob > F = 0.0000
Thank you,
Lamie
Please I would like you to help with a certain problem I have : I noticed that two time variables 2007&2011 are significant in my regression (i'm guessing due to the financial and Eurozone crisis). But how do I interpret the coefficient and sign on each time variable for my paper and also do i mentoned the R-sq (im a bit confused as to its validity in this fixed effect model.
Code:
xtreg $ylist ubdur replacementrate uegen unionden lmp_exp tax_wedge i.year, fe
Group variable: id Number of groups = 10
R-sq: within = 0.8373 Obs per group: min = 7
between = 0.0185 avg = 10.7
overall = 0.0933 max = 12
F(17,80) = 24.21
corr(u_i, Xb) = -0.7157 Prob > F = 0.0000
---------------------------------------------------------------------------------
une_rt_a | Coef. Std. Err. t P>|t| [95% Conf. Interval]
----------------+----------------------------------------------------------------
ubdur | .0178783 .0093775 1.91 0.060 -.0007835 .0365401
replacementrate | -11.31995 7.618282 -1.49 0.141 -26.48081 3.84092
uegen | -1.547902 .4918411 -3.15 0.002 -2.526697 -.5691071
unionden | -.1612843 .1412985 -1.14 0.257 -.4424773 .1199086
lmp_exp | 4.840894 .3651561 13.26 0.000 4.11421 5.567578
tax_wedge | -.0481105 .1508529 -0.32 0.751 -.3483174 .2520964
|
year |
2001 | -.5060035 .5743391 -0.88 0.381 -1.648975 .6369677
2002 | -.2499434 .606667 -0.41 0.681 -1.457249 .9573623
2003 | -.2116938 .6104098 -0.35 0.730 -1.426448 1.00306
2004 | .11122 .5931715 0.19 0.852 -1.069229 1.291669
2005 | .3910291 .6053263 0.65 0.520 -.8136087 1.595667
2006 | .9255652 .6233933 1.48 0.142 -.3150269 2.166157
2007 | 1.151597 .626483 1.84 0.070 -.0951442 2.398338
2008 | .7085658 .6347024 1.12 0.268 -.5545322 1.971664
2009 | .2741273 .6757321 0.41 0.686 -1.070622 1.618877
2010 | 1.163628 .6834175 1.70 0.093 -.1964165 2.523672
2011 | 1.940984 .6812735 2.85 0.006 .5852064 3.296761
|
_cons | 23.06657 5.909102 3.90 0.000 11.30709 34.82606
----------------+----------------------------------------------------------------------------------------
sigma_u | 4.0626822
sigma_e | 1.0688825
rho | .93526085 (fraction of variance due to u_i)
F test that all u_i=0: F(9, 80) = 19.08 Prob > F = 0.0000
Thank you,
Lamie
Comment