我正在使用esttab
+ tabstat
来生成要在.tex
中打开的LaTeX
文件。我接近得到我想要的东西,但有一个问题:
如何在手段之后在同一条线上获得标准偏差?它目前显示在平均线之后。
随后是MWE。请注意,我实际上创建了两个表并将它们相互附加。这只是在Stata
中显示为两个单独的表,但在我稍微修改代码后它可以在LaTeX
中工作,以便保存到文件而不输出到屏幕。如果有一种方法可以不像我那样追加,只是一次做所有事情,那将是超级的,但我不知道一个。另请注意,我遵循this site的代码在两个程序之间。
sysuse auto, replace
*create new categorical variable
quietly gen mod= ""
quietly replace mod="odd" if mod(_n, 2) == 1
quietly replace mod="even" if mod(_n, 2) == 0
*create table - by foreign
quietly eststo clear
quietly estpost tabstat price, by(foreign) statistics(mean sd) listwise nototal
quietly est store A
quietly estpost tabstat mpg, by(foreign) statistics(mean sd) listwise nototal
quietly est store B
esttab A B, main(mean 2) aux(sd 2) label noobs parentheses ///
varlabels(`e(labels)') mtitle("Mean price" "Mean mpg") nostar ///
unstack nonote nonumber collabels(none) refcat(Domestic "Origin", nolabel)
*append to table - by mod
quietly estpost tabstat price, by(mod) statistics(mean sd) listwise nototal
quietly est store A
quietly estpost tabstat mpg, by(mod) statistics(mean sd) listwise nototal
quietly est store B
esttab A B, append main(mean 2) aux(sd 2) label noobs parentheses ///
varlabels(`e(labels)') mtitle("Mean price" "Mean mpg") nostar ///
unstack nonote nonumber collabels(none) refcat(even "Type", nolabel)
更新1 我解决了之前在此问题中包含的问题。这个问题与我的LaTeX
输出中没有显示的小数点有关。但是我在LaTeX
中做了一个与包的实现有关的错误。 (我只需要输入正确数量的列。)
更新2 我想出了如何在括号中获取标准错误:从代码中删除plain
。我认为它是默认的,但包括parentheses
选项。我已更新代码和文本以反映此更改。