Dear researchers,
I have quick questions on the interaction methods, please:
I have unbalanced panel data set for a set of firms for the years extends from 2010-2015.
I have the following model:
I have used firm and year fixed effect regression.
Q1)
I want to interact X3 with X4 and both of these variables are continuous variables. I don’t know if this method called “ multiplicative method for interaction” or not. I hope you correct me?
Q2) Anyway, to do the interaction, which method I should use:
OR I should go directly with:
Q3) How to interpret the interaction for the above two continuous variables. Shall I look to the coefficient before the interaction and sum it to the coefficient of the interaction to know what happened like the DID method or what?
Q4) Can I get the margin for the above and the graph to see what happened after the interaction? If yes, please what is the code?
I have quick questions on the interaction methods, please:
I have unbalanced panel data set for a set of firms for the years extends from 2010-2015.
I have the following model:
Code:
Dep = X1 + X2 + X3 +X4
Q1)
I want to interact X3 with X4 and both of these variables are continuous variables. I don’t know if this method called “ multiplicative method for interaction” or not. I hope you correct me?
Q2) Anyway, to do the interaction, which method I should use:
Dep = X1 + X2 + X3
Dep = X1 + X2 + X3 +X4
Dep = X1 + X2 + X3 +X4 + X3*X4
Dep = X1 + X2 + X3 +X4
Dep = X1 + X2 + X3 +X4 + X3*X4
Code:
Dep = X1 + X2 + X3 +X4 + X3*X4
Q4) Can I get the margin for the above and the graph to see what happened after the interaction? If yes, please what is the code?
Comment