I am running "esttab" comand to get mlogit results. How I can to get just two rounded decimals in the output?
I would wholeheartedly appreciate any help!
I would wholeheartedly appreciate any help!
webuse sysdsn1, clear
mlogit insure age male nonwhite i.site
esttab, drop( Indemnity: _cons) unstack nobaselevels nonumbers mlab(none) b(2)
. esttab, drop( Indemnity: _cons) unstack nobaselevels nonumbers mlab(none) b(2)
--------------------------------------------
Prepaid Uninsure
--------------------------------------------
age -0.01 -0.01
(-1.90) (-0.68)
male 0.56** 0.45
(2.77) (1.23)
nonwhite 0.97*** 0.22
(4.12) (0.51)
2.site 0.11 -1.21*
(0.54) (-2.57)
3.site -0.59** -0.21
(-2.58) (-0.57)
--------------------------------------------
N 615
--------------------------------------------
t statistics in parentheses
* p<0.05, ** p<0.01, *** p<0.001
Comment