Hi,
I'm running a tobit regression and want to report marginal effects. The thing is that I have interactions (dummy#continuous variable), and that average marginal effect doesn't work in such case.
I was wondering which command I should use to obtain the marginal effect at the mean of the continuous variable when my dummy = 1.
So far, I've been testing the following ones:
For which Stata reports this result:

and :
With the following result:

I'm confused about which option is the right one (if any)...
I'm running a tobit regression and want to report marginal effects. The thing is that I have interactions (dummy#continuous variable), and that average marginal effect doesn't work in such case.
I was wondering which command I should use to obtain the marginal effect at the mean of the continuous variable when my dummy = 1.
So far, I've been testing the following ones:
Code:
margins i.treated, dydx(c.educ)
and :
Code:
margins i.treated, at((mean) c.educ)
I'm confused about which option is the right one (if any)...

Comment