【发布时间】:2018-04-07 07:26:40
【问题描述】:
我使用 community-contributed 命令estout 在 Stata 中创建一个汇总统计表。
我的代码在每个平均估计值下方的括号中显示标准差:
sysuse auto, clear
eststo clear
estpost summarize price mpg weight
esttab, cells(mean sd(par))
-------------------------
(1)
mean/sd
-------------------------
price 6165.257
(2949.496)
mpg 21.2973
(5.785503)
weight 3019.459
(777.1936)
-------------------------
N 74
-------------------------
如何消除斜线 (/),同时强制 mean 和 sd 重叠显示?
我还想将结果导出到LaTeX。
【问题讨论】: