Hello,
How can I export the treatment and marginal effects, rho, and its Wald statistic with significance stars after rbiprobit?
An example:
When I run:
or,
It gives me the coefficients and not the treatment/marginal effect.
Thank you.
How can I export the treatment and marginal effects, rho, and its Wald statistic with significance stars after rbiprobit?
An example:
Code:
webuse class10, clear rbiprobit graduate = income i.roommate i.hsgpagrp, endog(program = i.campus i.scholar income i.hsgpagrp) rbiprobit tmeffects, tmeffect(ate) rbiprobit margdec, dydx(income) effect(total) predict(p11)
Code:
eststo tmeffect: rbiprobit tmeffects, tmeffect(ate) esttab tmeffect
Code:
eststo meffect: rbiprobit margdec, dydx(income) effect(total) predict(p11) esttab meffect
It gives me the coefficients and not the treatment/marginal effect.
Thank you.
Comment