Hi guys! I tested the presence of fixed invariant effect in my model with the hausman and I obtained a small p-value 0.0143 so I reject the null and consider the fixed effect model. Then I tested the ols against re with the xttest0 and I obtained a pvalue=1.000, so I need to reject the random effect model again. I need to prefer the fixed or the ols? thank you!!
Code:
xtreg price age nbh cbd intst rooms area land baths dist,fe est store fe xtreg price age nbh cbd intst rooms area land baths dist,re est store re hausman fe re
Code:
Test: Ho: difference in coefficients not systematic chi2(7) = (b-B)'[(V_b-V_B)^(-1)](b-B) = 17.62 Prob>chi2 = 0.0138
Code:
xtreg price age nbh cbd intst rooms area land baths dist,re vce (cluster id) xttest0
Code:
price[id,t] = Xb + u[id] + e[id,t] Estimated results: | Var sd = sqrt(Var) ---------+----------------------------- price | 2.05e+09 45318.08 e | 1.15e+09 33875.28 u | 0 0 Test: Var(u) = 0 chibar2(01) = 0.00 Prob > chibar2 = 1.0000
Comment