I would like to report the marginal effects after mlogit. Using the following code, etable produces a nice table. However, the columns showing marginal effects for outcomes 1 and 3 are labeled m_1 and m_3. (When I use the option columns(index) they are labeled 1 and 2.) How can I get more informative column labels, possibly the labels on the dependent variable?
Thanks,
Devra
Thanks,
Devra
Code:
clear webuse sysdsn1 tab insure mlogit insure age i.male i.nonwhite i.site, rrr coeflegend est store m est res m forval i = 1/3 { margins, dydx(*) predict(outcome(`i')) post estimates store m_`i' estimates restore m } etable, estimates(m_1 m_3 ) /// cstat(_r_b, nformat(%9.3g)) cstat(_r_z, nformat(%9.3g)) /// showstars column(estimates)
Comment