i have a question regarding interactions compared to running separate regressions.
I have a data on consumption expenditure at the intra hosuehold level. Using this information I categorise family members into boys, girls, men and women. Now I want to see the impact of a certain government policy on the consumption expenditure of these separate family members.
My question is that should I run a regression with interaction terms of the Policy variable with the Member variable. and then estimate the marginal effects and compare the marginal effects for the different family members.
or should I estimate separate regression for these family members
I have a data on consumption expenditure at the intra hosuehold level. Using this information I categorise family members into boys, girls, men and women. Now I want to see the impact of a certain government policy on the consumption expenditure of these separate family members.
My question is that should I run a regression with interaction terms of the Policy variable with the Member variable. and then estimate the marginal effects and compare the marginal effects for the different family members.
Code:
xtreg Consumption_exp Policy i.Members Policy*i.Members Controls, fe cluster (household) robust margins, dydx(Policy) at(Members=(1(1)4))
Code:
forvalues i=1/4 { xtreg Consumption_exp Policy Controls if member==`i', fe cluster (household) robust est store `var'_`i' }
Comment