I seem to be struggling with outputting tabstat output into a tex table. I am using the auto dataset here, but the problem transfers to my data.
Using the auto data,
sysuse auto
estpost tabstat displacement gear_ratio, by(make) stats(mean sem)
Makes a fine table, but when I try to use esttab or estout to output it, it doesn't work.
esttab ,cells(mean(fmt(%12.3f)) semean(fmt(%12.3f) par(( ))))
estout ,cells(mean(fmt(%12.3f)) semean(fmt(%12.3f) par(( ))))
Using the auto data,
sysuse auto
estpost tabstat displacement gear_ratio, by(make) stats(mean sem)
Makes a fine table, but when I try to use esttab or estout to output it, it doesn't work.
esttab ,cells(mean(fmt(%12.3f)) semean(fmt(%12.3f) par(( ))))
estout ,cells(mean(fmt(%12.3f)) semean(fmt(%12.3f) par(( ))))
Comment