Dear all,
I am a new user of Stata, my back up is R, but now I need make some coefplot (SSC) graph. I wana replicate margins value after a logit regression. I did read that i can use post in a margins command but for others consideration I wanna use transform in a coefplot (SSC):
I did read that I should use :
margins i.south, post
But I would like use some like:
Values not coincide with margins:


Thanks
I am a new user of Stata, my back up is R, but now I need make some coefplot (SSC) graph. I wana replicate margins value after a logit regression. I did read that i can use post in a margins command but for others consideration I wanna use transform in a coefplot (SSC):
Code:
sysuse nlsw88, clear
logit union grade i.south
margins i.south
Predictive margins Number of obs = 1,876
Model VCE: OIM
Expression: Pr(union), predict()
------------------------------------------------------------------------------
| Delta-method
| Margin std. err. z P>|z| [95% conf. interval]
-------------+----------------------------------------------------------------
south |
Not south | .297394 .0138465 21.48 0.000 .2702553 .3245327
South | .1732535 .0134751 12.86 0.000 .1468428 .1996643
------------------------------------------------------------------------------
margins i.south, post
But I would like use some like:
Code:
coefplot (., transform(* = (exp(@)/( 1+exp(@))))), drop(_cons) mlabel baselevels coefplot (., transform(* = invlogit(@))), drop(_cons) mlabel citype(logit) baselevels
Thanks

Comment