2016-02-24 46 views
1

,當我用estpostesttab, 然而,即使通過指定parentheses選項生成彙總統計表格四處逛逛標準誤差括號,我不能夠得到解決標準誤差括號。使用-esttab-

我使用的代碼等同於以下內容:

clear all 
sysuse auto, clear 

qui eststo: estpost tabstat weight price, by(foreign) /// 
    statistics(mean sd) columns(statistics) listwise nototal 

esttab using "outcomes.tex", replace booktabs /// 
    main(mean) aux(sd) unstack nostar noobs nonote nomtitle nonumber /// 
    title("Summary Statistics") /// 
    cells("mean" "sd") gaps compress par /// 
    collabels(none) 

產生的outcomes.tex可以在乳膠編譯使用:

\documentclass{article} 
\usepackage{booktabs} 

\begin{document} 
    \input{outcomes.tex} 
\end{document} 

編輯: 同樣的問題發生,如果我嘗試使用br選項將標準錯誤放在括號中。

回答

2

一個例子:

clear all 
sysuse auto, clear 

eststo: estpost tabstat weight price, by(foreign) /// 
    statistics(mean sd) columns(statistics) listwise nototal 

// yours 
esttab, main(mean) aux(sd) unstack nostar noobs nonote nomtitle nonumber /// 
    title("Summary Statistics") /// 
    cells("mean" "sd") gaps compress par /// 
    collabels(none) 

// proposed 
esttab, unstack nostar noobs nonote nomtitle nonumber /// 
    title("Summary Statistics") /// 
    cells(mean sd(par)) gaps compress par /// 
    collabels(none) 

記得走了過來help estout,爲esttab僅僅是前者的包裝。

+0

太好了,非常感謝! – Stezzo