Hi all. I'm running a fixed effects model that includes interaction terms:
I then estimate the above using RE and use xtoverid to test for random versus fixed effects:
For context, using xtoverid on models that omit interactions strongly suggests a preference for fixed effects. However, using xtoverid after the augmented model gives 'Error - saved RE estimates are degenerate (sigma_u=0) and equivalent to pooled OLS r(198);'. Using xttest0 on the RE model further suggests pooled OLS.
I suppose this might indicate that the interactions remove the need to use either FE or RE. However, my panel is unbalanced, and after research it appears that xttest1 extends xttest0 to unbalanced panels. Using xttest1 strongly suggests the presence of random effects.
In this context, I have two questions:
Code:
xtreg EPR LK PAU CO zSM LK_zSM zUB LK_zUB zUD LK_zUD zALMP LK_zALMP zEP LK_zEP i.year, fe cluster(country)
Code:
xi: xtreg EPR LK PAU CO zSM LK_zSM zUB LK_zUB zUD LK_zUD zALMP LK_zALMP zEP LK_zEP i.year, re cluster(country) xtoverid
I suppose this might indicate that the interactions remove the need to use either FE or RE. However, my panel is unbalanced, and after research it appears that xttest1 extends xttest0 to unbalanced panels. Using xttest1 strongly suggests the presence of random effects.
In this context, I have two questions:
- Can I trust the result of xtoverid if xttest1 suggests random effects are present? Could it be that the unbalanced nature of my panel makes it dodgy?
- Alternatively, might there be an issue with multicollinearity, if xtoverid suggests FE without interactions, but pooled OLS with them included?
Comment