If I run the following code then it generates marginal effect for 2nd outcome.
But how can I make it report marginal effect of nonwhite on every outcome in one shot? I tried
but it didn't work.
Code:
webuse sysdsn3 mprobit insure age male nonwhite site2 site3 margins, dydx(nonwhite) predict(outcome(2))
Code:
margins, dydx(nonwhite) predict(outcome(1) outcome(2) outcome(3))
Comment