Hi,
I am running the following regression
LP_growth = labor productivity growth in percentages
lnLP_5 = is the natural logarithm of initial labor productivity
ln_DVAR_5 = is the natural logarithm of the domestic value added in production-ratio (this is thus a value between 0 and 1)
And where
is:
are country-industry fixed effects,
are country-year and industry-year fixed effects.
My question: how can I interpret the interaction effect
The coefficient that I get for this is 0.381.
(have read the FAQ and hope this post is correct, my apologies if not)
Thanks a lot!
Willemijn
I am running the following regression
Code:
reg LP_growth lnLP_5 lnDVAR_5 LPxDVAR i.x i.year#(i.ind i.CC2), vce(robust)
lnLP_5 = is the natural logarithm of initial labor productivity
ln_DVAR_5 = is the natural logarithm of the domestic value added in production-ratio (this is thus a value between 0 and 1)
And where
Code:
LPxDVAR
Code:
gen LPxDVAR = lnLP_5*lnDVAR_5
Code:
i.x
Code:
i.year#(i.ind i.CC2)
My question: how can I interpret the interaction effect
Code:
LPxDVAR
(have read the FAQ and hope this post is correct, my apologies if not)
Thanks a lot!
Willemijn
Comment