Stataのコマンドを使用する場合、その出力をテーブルstrate
にエクスポートすることはできますか?LaTeX
たとえば、コミュニティが提供 estout
するコマンドファミリと同様の方法で実行できます。
コマンドのoutput()
オプションとを使用することで、必要なことを実現できます。strate
esttab
次のおもちゃの例を考えてみましょう。
webuse diet, clear
stset dox, origin(time doe) id(id) scale(365.25) fail(fail==1 3 13)
stsplit ageband, at(40(10)70) after(time=dob) trim
preserve
tempfile myfile
strate ageband, per(1000) output(`myfile')
use `myfile', clear
mkmat *, matrix(A)
restore
esttab matrix(A), title("Summary results") ///
mlabels(, none) ///
varlabels(r1 " " r2 " " r3 " ")
Summary results
------------------------------------------------------------------------------------------
ageband _D _Y _Rate _Lower _Upper
------------------------------------------------------------------------------------------
40 6 .9070062 6.61517 2.971936 14.72457
50 18 2.107042 8.542783 5.382317 13.55906
60 22 1.493292 14.73255 9.700656 22.37457
------------------------------------------------------------------------------------------
のtex
オプションはesttab
、目的のLaTeX
出力を生成します。
esttab matrix(A), title("Summary results") ///
mlabels(, none) ///
varlabels(r1 " " r2 " " r3 " ") ///
tex
\begin{table}[htbp]\centering
\caption{Summary results}
\begin{tabular}{l*{6}{c}}
\hline\hline
& ageband& \_D& \_Y& \_Rate& \_Lower& \_Upper\\
\hline
& 40& 6& .9070062& 6.61517& 2.971936& 14.72457\\
& 50& 18& 2.107042& 8.542783& 5.382317& 13.55906\\
& 60& 22& 1.493292& 14.73255& 9.700656& 22.37457\\
\hline\hline
\end{tabular}
\end{table}