Hi, I am currently performing an pooled ols, fixed and random effects regression. However, after performing all three and going through with the hausman test and the breusch-pragan test i found that the fixed effects model is the model to go with. However, my results are still the majority of the coefficients as low t-values even after including robust in the fixed effects model to help with standard errors. I have a dependent variable of output per hour worked (a measure of productivity) and my independent variables are age, female, higher education, life satisfaction, general health, children in the household, ethnic majority, urban, gross monthly income, in a couple, occupations from 1-7 dummy variables, region (Yorkshire and the UK as a whole) and also 16 dummy variables for broad industries. I let stata know the data is panel set data by using
xtset industry
After that I've checked everything and decided the fixed effects model with robust standard errors is the best model. These are my results
. xtreg outputperhourworked age female lifesatisfaction highereducation grossmonthlyincome generalhealth urban region occ1
> -occ7, robust fe
Fixed-effects (within) regression Number of obs = 160
Group variable: industry Number of groups = 16
R-squared: Obs per group:
Within = 0.5771 min = 10
Between = 0.0053 avg = 10.0
Overall = 0.0526 max = 10
F(15,15) = 96060.12
corr(u_i, Xb) = -0.0838 Prob > F = 0.0000
(Std. err. adjusted for 16 clusters in industry)
------------------------------------------------------------------------------------
| Robust
outputperhourwor~d | Coefficient std. err. t P>|t| [95% conf. interval]
-------------------+----------------------------------------------------------------
age | .2078659 .1047539 1.98 0.066 -.0154118 .4311437
female | 2.958096 4.007467 0.74 0.472 -5.583618 11.49981
lifesatisfaction | 2.233016 4.195188 0.53 0.602 -6.708815 11.17485
highereducation | -9.022512 4.293936 -2.10 0.053 -18.17482 .1297953
grossmonthlyincome | .0010065 .0008429 1.19 0.251 -.0007902 .0028031
generalhealth | 1.581911 4.61318 0.34 0.736 -8.25085 11.41467
urban | -4.006694 2.964725 -1.35 0.197 -10.32586 2.312467
region | -3.74473 .7359868 -5.09 0.000 -5.313449 -2.176011
occ1 | -11.81984 20.39074 -0.58 0.571 -55.28168 31.64201
occ2 | 25.69072 13.93247 1.84 0.085 -4.005643 55.38708
occ3 | 10.87094 7.856785 1.38 0.187 -5.875397 27.61728
occ4 | 5.970971 8.645878 0.69 0.500 -12.45728 24.39922
occ5 | .9089322 7.28959 0.12 0.902 -14.62846 16.44633
occ6 | -6.257695 4.096937 -1.53 0.147 -14.99011 2.474719
occ7 | 3.073744 4.907315 0.63 0.540 -7.385949 13.53344
_cons | 14.56094 9.799501 1.49 0.158 -6.326203 35.44808
-------------------+----------------------------------------------------------------
sigma_u | 10.992994
sigma_e | 2.549267
rho | .94896714 (fraction of variance due to u_i)
------------------------------------------------------------------------------------
The r-squared value seems appropriate however the majority of the t-values are still low, is there anything I can do for this or should I carry on with these results or used the pooled ols regression or random effects regression?
Any help would be appreciated.
Thanks
xtset industry
After that I've checked everything and decided the fixed effects model with robust standard errors is the best model. These are my results
. xtreg outputperhourworked age female lifesatisfaction highereducation grossmonthlyincome generalhealth urban region occ1
> -occ7, robust fe
Fixed-effects (within) regression Number of obs = 160
Group variable: industry Number of groups = 16
R-squared: Obs per group:
Within = 0.5771 min = 10
Between = 0.0053 avg = 10.0
Overall = 0.0526 max = 10
F(15,15) = 96060.12
corr(u_i, Xb) = -0.0838 Prob > F = 0.0000
(Std. err. adjusted for 16 clusters in industry)
------------------------------------------------------------------------------------
| Robust
outputperhourwor~d | Coefficient std. err. t P>|t| [95% conf. interval]
-------------------+----------------------------------------------------------------
age | .2078659 .1047539 1.98 0.066 -.0154118 .4311437
female | 2.958096 4.007467 0.74 0.472 -5.583618 11.49981
lifesatisfaction | 2.233016 4.195188 0.53 0.602 -6.708815 11.17485
highereducation | -9.022512 4.293936 -2.10 0.053 -18.17482 .1297953
grossmonthlyincome | .0010065 .0008429 1.19 0.251 -.0007902 .0028031
generalhealth | 1.581911 4.61318 0.34 0.736 -8.25085 11.41467
urban | -4.006694 2.964725 -1.35 0.197 -10.32586 2.312467
region | -3.74473 .7359868 -5.09 0.000 -5.313449 -2.176011
occ1 | -11.81984 20.39074 -0.58 0.571 -55.28168 31.64201
occ2 | 25.69072 13.93247 1.84 0.085 -4.005643 55.38708
occ3 | 10.87094 7.856785 1.38 0.187 -5.875397 27.61728
occ4 | 5.970971 8.645878 0.69 0.500 -12.45728 24.39922
occ5 | .9089322 7.28959 0.12 0.902 -14.62846 16.44633
occ6 | -6.257695 4.096937 -1.53 0.147 -14.99011 2.474719
occ7 | 3.073744 4.907315 0.63 0.540 -7.385949 13.53344
_cons | 14.56094 9.799501 1.49 0.158 -6.326203 35.44808
-------------------+----------------------------------------------------------------
sigma_u | 10.992994
sigma_e | 2.549267
rho | .94896714 (fraction of variance due to u_i)
------------------------------------------------------------------------------------
The r-squared value seems appropriate however the majority of the t-values are still low, is there anything I can do for this or should I carry on with these results or used the pooled ols regression or random effects regression?
Any help would be appreciated.
Thanks

Comment