Hello,
I'm running the following code:
However, the result for the first marginal effect is .0413987, for the second is -.0409966 and third is .5251667. Up to this point, I thought that when using
, it would compute at the mean, so I would expect that the last margins command would yield the same as the first.
What am I missing?
Thank you for your time!
Hélder Costa
I'm running the following code:
Code:
webuse nhanes2d, clear
probit highbp weight age age2 i.female##c.height loglead i.sizplace
est store e2
margins, dydx(female)
sum height
margins , dydx(female) at(height = `r(mean)')
margins , dydx(female) atmeans
Code:
margins, dydx(female)
What am I missing?
Thank you for your time!
Hélder Costa

Comment