I want to create a -coefplot- from margins from four models, e.g.
This approach only gives the coefficients from the regression model, not dy/dx from margins. NB: I am working on a secure server where -install ssc- does not work.
Code:
fracreg probit y x_[1] margins, dydx(x_[1]) est store mod1 fracreg probit y x_[2] margins, dydx(x_[2]) est store mod2 fracreg probit y x_[3] margins, dydx(x_[3]) est store mod3 fracreg probit y x_[4] margins, dydx(x_[4]) est store mod4 coefplot mod1 mod2 mod3 mod4
Comment