Dear Stata Statisticians,
I have one unbalanced panel data with large N and Small T.
The model is fractional response model for panel data (Papke and Wooldridge 2008).
Where y is one fractional response variable, arranging from 0 to 1;
c_x1 is one centered continuous variable;
c_x2 is one centered continuous variable;
Since the model I use is basically one nonlinear model if I am not wrong, I cannot directly get the average marginal effect of
by
. I read Williams (2015) in which I get the information that
I am not an expert in Econometrics and I sincerely look forward the answer that
Whether now can we have the marginal effect of interaction effect in nonlinear model?
Many thanks and Best regards,
David
Reference:
Papke, L.E. and J.M. Wooldridge (2008), “Panel Data Methods for Fractional Response Variables with an Application to Test Pass Rates," Journal of Econometrics 145, 121-133.
Williams, R. (2012). Using the margins command to estimate and interpret adjusted predictions and marginal effects. Stata Journal, 12(2), 308.
http://www.statalist.org/forums/foru...ctional-models
I have one unbalanced panel data with large N and Small T.
The model is fractional response model for panel data (Papke and Wooldridge 2008).
Code:
xtgee y c_x1 c_x2 y1998 y2000 y2002 c.c_x1#c.c_x2 , fam(bin) link(probit) corr(uns) vce(robust)
c_x1 is one centered continuous variable;
c_x2 is one centered continuous variable;
Since the model I use is basically one nonlinear model if I am not wrong, I cannot directly get the average marginal effect of
Code:
c.c_x1#c.c_x2
Code:
margins,dydx(*)
People often ask what the ME of an interaction term is. Stata’s margins command replies: there is not one. You just have the MEs of the component terms. The value of the interaction term cannot change independently of the values of the component terms, so you cannot estimate a separate effect for the interaction. The older mfx command will report MEs for interaction terms, but the numbers it gives are wrong because mfx is not aware of the interdependencies between the interaction term itself and the variables used to compute the interaction term.
Whether now can we have the marginal effect of interaction effect in nonlinear model?
Many thanks and Best regards,
David
Reference:
Papke, L.E. and J.M. Wooldridge (2008), “Panel Data Methods for Fractional Response Variables with an Application to Test Pass Rates," Journal of Econometrics 145, 121-133.
Williams, R. (2012). Using the margins command to estimate and interpret adjusted predictions and marginal effects. Stata Journal, 12(2), 308.
http://www.statalist.org/forums/foru...ctional-models
Comment