The following code runs two mlogit models and then creates a table where the coefficients for two different outcomes are shown side-by-side rather than stacked. Each pair of outcomes is labeled (Model 1 and Model 2 respectively.) How can I add a row which labels each of the four columns with the label for the appropriate level of the dependent variable?
Thanks,
Devra
Thanks,
Devra
Code:
clear all
use http://www.stata-press.com/data/r15/nmihs.dta
mlogit bwgrp marital age highbp, baseoutcome(3)
estimates store m1
mlogit bwgrp marital age highbp race, baseoutcome(3)
estimates store m2
etable, estimates (m1 m2) showstars
collect label levels cmdset 1 "Model 1" 2 "Model 2", modify
collect layout (colname#result[_r_b _r_se] result[N]) ///
(cmdset#coleq[]#stars[])

Comment