如何创建给定样式的描述统计表?

如何创建给定样式的描述统计表?

我想创建一个如下所示的描述统计表:在此处输入图片描述

尤其是保险和非保险这两个类别如何并排出现。

我尝试在 stata 中按类别使用 estpost tabstat,并使用 esttab 在 latex 中保存表格,但生成的表格有垂直的类别,看起来与图片中的完全不一样。

有人可以建议如何复制屏幕截图中这样的表格吗?

另外,是否可以通过一些 stata 命令来获取它,还是必须在 latex 中手动完成?

谢谢

答案1

开始一些事情

\documentclass[landscape]{article}
\usepackage{siunitx}
\usepackage{booktabs}
\begin{document}

\noindent{\centering\scriptsize
\begin{tabular}{lSSSSSS}
\toprule
& \multicolumn{3}{l}{Insured} & \multicolumn{3}{l}{Uninsured}\\
\cmidrule(lr){2-4}\cmidrule(l){5-7}
Variable & {Weighted mean} & {Minimum} & {Maximum} & {Weighted mean} & {Minimum} & {Maximum} \\
\midrule
Social cohesion at commune level (1 low to 5 high) & 4.121 & 3.646 & 4.750 & 4.103 & 3.646 & 4.453 \\
\bottomrule 
\end{tabular}
}
\end{document}

在此处输入图片描述

答案2

我不熟悉stata命令和语法(因为我刚开始使用它),但是,如果它生成一些表,您可以手动重新格式化。

在此处输入图片描述

上表是通过使用包和tabularray加载包的两个库生成的:booktabssiunitx

\documentclass[landscape]{article}
\usepackage{tabularray}
\UseTblrLibrary{booktabs, siunitx}

\begin{document}

    \begin{table}
    \centering
\sisetup{table-format=2.3}
\caption{???}
\label{tab:statistic?}
    \begin{tblr}{colspec= {Q[l,m,wd=0.4\linewidth] *{3}{Q[m,c,si]}},
                 row{1} = {font=\bfseries},
                 row{3-Y} = {belowsep=3pt}
                } 
    \toprule
\SetCell[r=2]{c}    
    &   \SetCell[c=3]{c} {{{Insured}}}
        & & &   \SetCell[c=3]{c} {{{Uninsured}}}   
                &   &                                       \\
    \cmidrule[lr]{2-4}\cmidrule[l]{5-7}
Variable 
    & {{{Weighted mean}}}   & {{{Minimum}}} & {{{Maximum}}} 
    & {{{Weighted mean}}}   & {{{Minimum}}} & {{{Maximum}}} \\
    \midrule
Social cohesion at commune level (1 low to 5 high) 
    & 4.121 & 3.646 & 4.750 & 4.103 & 3.646 & 4.453         \\
Index of networks ...
    &16.058 & 5.521 &49,147 &12.478 & 2.796 &49.147         \\
%
Income (annual consumption expenditure '000s VND
    &   \num{13 709}    &   \num{840}   &   \num{103 944} 
    &   \num{13 532}    &   \num{432}   &   \num{168 000}   \\   
%
    \bottomrule
    \end{tblr}
    \end{table}
\end{document}

表格并不完整,但缺失的行应该很容易添加。

相关内容