Hi – I am running fixed effects models on four subsamples: country 1, 2 ,3, 4.
I want to check whether the coefficient on i.iv1 is statistically different across groups, so I run the regression with an interaction term between i.iv1 and my country dummy.
How can I interpret this output? Does this mean that the only significant cross group difference relative to reference group country 1, is in country 2? Whereas the effect of iv1 on my dv is not statistically different across all other countries.
Is this the way to test cross group differences or are there any tests I could run? I’ve come across t-test, f-test, suest, lincom etc. but I am slightly confused as to which would apply to my situation.
Code:
by ctry, sort: xtreg dv i.iv1 i.iv2 i.iv3 i.iv4, fe
Code:
xtreg dv i.iv1##i.ctry i.iv2 i.iv3 i.iv4, fe
Code:
iv1#ctry | Mod#Country 2 | .6005202 .2146911 2.80 0.005 .1796544 1.021386 Mod#Country 4 | -.1762824 .1916935 -0.92 0.358 -.5520652 .1995003 Mod#Country 3 | -.2925244 .2086104 -1.40 0.161 -.7014699 .1164211 Low#Country 2 | .9035869 .2453192 3.68 0.000 .4226798 1.384494 Low#Country 4 | .0934972 .2228262 0.42 0.675 -.3433161 .5303105 Low#Country 3 | .0315544 .2363652 0.13 0.894 -.4317998 .4949085
Is this the way to test cross group differences or are there any tests I could run? I’ve come across t-test, f-test, suest, lincom etc. but I am slightly confused as to which would apply to my situation.
Comment