Hi All,

I have a panel data set and I'm trying to find if the effect of my IV on DV differs as per the level of development of countries. Therefore, I create a dummy variable (dev_dummy) where the dummy is assigned 1 if the country is developed and 0 if the country is emerging and interact it with my IV. Then, I perform a base-line regression with the interaction term. Following are the used commands and the associated outputs. Please note that DV= Y, IV=X and "dev" represents the level of development.

//code

gen dev_dummy = 0

replace dev_dummy=1 if dev=="Developed"

xtreg Y X dev_dummy (c.X)#dev_dummy, fe vce(cluster firmid)

//output


. xtreg Y X dev_dummy (c.X)#dev_dummy, fe vce(cluster firmid)
note: dev_dummy omitted because of collinearity

Fixed-effects (within) regression Number of obs = 7559
Group variable: firmid Number of groups = 350

R-sq: Obs per group:
within = 0.0481 min = 1
between = 0.1117 avg = 12.7
overall = 0.0256 max = 16

F(17,7130) = 42.52
corr(u_i, Xb) = -0.2786 Prob > F = 0.0000

(Std. Err. adjusted for 350 clusters in firmid)


-------------------------------------------------------------------------------------
| Robust
Y | Coef. Std. Err. t P>|t| [95% Conf. Interval]
--------------------+----------------------------------------------------------------
X | -.0082551 .0023226 -3.55 0.000 -.0128082 -.0037021
dev_dummy | 0 (omitted)
|

|
dev_dummy#c.X |
1 | -.1097093 .0360816 -3.04 0.002 -.1804399 -.0389788
|
_cons | .0863293 .0013789 62.61 0.000 .0836263 .0890324
--------------------+----------------------------------------------------------------

//
As you can see, the coefficient for interaction term is negative (-0.1097). I understand that since the interaction term is significant, this means that there is a significant difference of the impact of X on Y between the two groups. But I have trouble in identifying in which group the effect of X on Y is stronger.

Does the negative coefficient for the interaction term mean that the impact of X on Y is more pronounced for developed countries? (where dev_dummy=1 if dev=="Developed")?

Thank You.