Stata esttab twoway制表标签

时间:2015-12-15 18:23:54

标签: latex stata labels

假设我有这个数据集:

webuse union, clear

我想要制作一个表格:

tab union smsa

我想将其导出为.tex文件,并使其与上面的列表类似。有没有办法让代码类似于以下代码自动显示标签(union workerlives in SMSA)而不必硬编码?

eststo clear
eststo: estpost tab union smsa
esttab est1 using "${path}/example.tex", cell(b) unstack noobs ///
    replace nonum collabels(none) eqlabels(, lhs("union worker")) ///
    mtitles("lives in SMSA")

1 个答案:

答案 0 :(得分:2)

你能自动澄清你的意思吗?"?我无法对此进行测试,因为加载时这些变量不在自动数据集中,但您可以显式调用变量标签宏而不是变量标签:

eststo clear
eststo: estpost tab union smsa
esttab est1 using "${path}/example.tex", cell(b) unstack noobs ///
    replace nonum collabels(none) eqlabels(, lhs("`:variable label union'")) ///
    mtitles("`:variable label smsa'")

请尝试help extended_fcn了解详情。