在回归结果表下添加显著性水平

在回归结果表下添加显著性水平

我有一张如下的表格:

\begin{table}[htbp]\centering
\caption{Dependent Variable: Enrollment}
\begin{tabular}{c c c c}
\hline\hline 
\textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3}\\ \hline
frl         &      -0.012   &      -0.052   &      -0.156** \\
            &      (0.04)   &      (0.06)   &      (0.06)   \\
minority    &               &       0.034   &       0.097*  \\
            &               &      (0.05)   &      (0.04)   \\
disting     &               &               &       0.439***\\
            &               &               &      (0.06)   \\
cons       &       0.529***&       0.530***&       0.518***\\
            &      (0.03)   &      (0.03)   &      (0.02)   \\
\hline  N           &     196   &     196   &     196   \\          
R$^{2}$           &       0.001   &       0.003   &       0.235   \\
\hline
\end{tabular}
\end{table}

我想在下面添加统计显著性星号,但我似乎无法添加带有三个多列的代码。我尝试在表格末尾添加以下内容,但似乎不起作用:

\bottomrule
\vspace{-3mm}\\
\multicolumn{3}{l}{\textsuperscript{***}$p<0.01$, 
  \textsuperscript{**}$p<0.05$, 
  \textsuperscript{*}$p<0.1$, 

我怎样才能添加文本上标?

答案1

事实上,您可以使用包中的a\multicolumn和:\addlinespacebooktabs

\documentclass{article}
\usepackage{booktabs}

\begin{document}

\begin{table}[htbp]\centering
\caption{Dependent Variable: Enrollment}
\begin{tabular}{c c c c}
\toprule
\textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3}\\ 
\midrule
frl         &      -0.012   &      -0.052   &      -0.156** \\
            &      (0.04)   &      (0.06)   &      (0.06)   \\
minority    &               &       0.034   &       0.097*  \\
            &               &      (0.05)   &      (0.04)   \\
disting     &               &               &       0.439***\\
            &               &               &      (0.06)   \\
cons       &       0.529***&       0.530***&       0.518***\\
            &      (0.03)   &      (0.03)   &      (0.02)   \\
\midrule
 N           &     196   &     196   &     196   \\          
R$^{2}$           &       0.001   &       0.003   &       0.235   \\
\bottomrule
\addlinespace[1ex]
\multicolumn{3}{l}{\textsuperscript{***}$p<0.01$, 
  \textsuperscript{**}$p<0.05$, 
  \textsuperscript{*}$p<0.1$}
\end{tabular}
\end{table}

\end{document}

在此处输入图片描述

下面是另一种使用ctable包装;我使用了一些框来限制上标字符的宽度:

\documentclass{article}
\usepackage{ctable}
\usepackage{booktabs}

\begin{document}

\ctable[
  notespar,
  caption={Dependent Variable: Enrollment}
]{c c c c}
{\tnote[*]{$p<0.1$}\tnote[**]{$p<0.5$}\tnote[***]{$p<0.01$}}{
\toprule
\textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3}\\ 
\midrule
frl         &      -0.012   &      -0.052   &      -0.156\tmark[{\makebox[0pt][l]{**}}] \\
            &      (0.04)   &      (0.06)   &      (0.06)   \\
minority    &               &       0.034   &       0.097\tmark[{\makebox[0pt][l]{*}}]  \\
            &               &      (0.05)   &      (0.04)   \\
disting     &               &               &       0.439\tmark[{\makebox[0pt][l]{***}}]\\
            &               &               &      (0.06)   \\
cons       &       0.529\tmark[{\makebox[0pt][l]{***}}]&       0.530\tmark[{\makebox[0pt][l]{***}}]&       0.518\tmark[{\makebox[0pt][l]{***}}]\\
            &      (0.03)   &      (0.03)   &      (0.02)   \\
\midrule  
N           &     196   &     196   &     196   \\          
R$^{2}$           &       0.001   &       0.003   &       0.235   \\
\bottomrule}

\end{document}

在此处输入图片描述

如果没有booktabsnor ctable,您可以执行以下操作:

\documentclass{article}
\usepackage{booktabs}

\begin{document}

\begin{table}[htbp]\centering
\caption{Dependent Variable: Enrollment}
\begin{tabular}{c c c c}
\hline\hline
\textbf{Variable} & \textbf{Model 1} & \textbf{Model 2} & \textbf{Model 3}\\ 
\hline
frl         &      -0.012   &      -0.052   &      -0.156** \\
            &      (0.04)   &      (0.06)   &      (0.06)   \\
minority    &               &       0.034   &       0.097*  \\
            &               &      (0.05)   &      (0.04)   \\
disting     &               &               &       0.439***\\
            &               &               &      (0.06)   \\
cons       &       0.529***&       0.530***&       0.518***\\
            &      (0.03)   &      (0.03)   &      (0.02)   \\
\hline
 N           &     196   &     196   &     196   \\          
R$^{2}$           &       0.001   &       0.003   &       0.235   \\
\hline
\\[-1.75ex]
\multicolumn{3}{l}{\textsuperscript{***}$p<0.01$, 
  \textsuperscript{**}$p<0.05$, 
  \textsuperscript{*}$p<0.1$}
\end{tabular}
\end{table}

\end{document}

在此处输入图片描述

答案2

在 底部添加内容没有问题tabular,只要\multicolumn是单元格中的第一个元素即可:

在此处输入图片描述

\documentclass{article}
\usepackage{booktabs}% http://ctan.org/pkg/booktabs
\begin{document}

\begin{table}[htbp]
  \centering
  \caption{Dependent Variable: Enrollment}
  \begin{tabular}{c r@{}l r@{}l r@{}l}
    \toprule
    \textbf{Variable} & 
      \multicolumn{2}{c}{\textbf{Model 1}} & 
      \multicolumn{2}{c}{\textbf{Model 2}} & 
      \multicolumn{2}{c}{\textbf{Model 3}} \\
    \midrule
    frl         &  $-$0&.012   &  $-$0&.052   &  $-$0&.156\textsuperscript{**}  \\
                &    (0&.04)   &    (0&.06)   &    (0&.06)    \\
    minority    &      &       &     0&.034   &     0&.097\textsuperscript{*}   \\
                &      &       &    (0&.05)   &    (0&.04)    \\
    disting     &      &       &      &       &     0&.439\textsuperscript{***} \\
                &      &       &      &       &    (0&.06)    \\
    cons        &     0&.529\textsuperscript{***}&     0&.530\textsuperscript{***}&     0&.518\textsuperscript{***} \\
                &    (0&.03)   &    (0&.03)   &    (0&.02)    \\
    \midrule
    N           &   196&       &   196&       &   196&        \\          
    R$^{2}$     &     0&.001   &     0&.003   &     0&.235    \\
  \bottomrule
  \multicolumn{3}{l}{\rule{0pt}{1.2\normalbaselineskip}% strut
    \textsuperscript{***}$p < 0.01$, 
    \textsuperscript{**}$p < 0.05$, 
    \textsuperscript{*}$p < 0.1$} 
  \end{tabular}
\end{table}

\end{document}

为了保持一致性,如果您使用\textsuperscript来引用表格下方的组件,则项目也应使用\textsuperscript。此外,将内容对齐到小数点可能会很有趣tabular(正如我上面所做的那样,使用穷人的D-column)。

答案3

鉴于数据列包含带小数的数字,如果数字与小数点对齐,对读者来说非常有帮助。这可以通过使用包dcolumn并定义合适的小数样式列类型来实现。使用这种方法的一个附带好处是,-负数上的符号将被排版为正确的数学“减号”符号,而不是短“破折号”。

正如前面的答案中已经指出的那样,您(i)可以将有关标准误差和显着性水平的图例放在表格底部的行中,方法是将信息包含在\multicolumn{4}{l}{...}语句中,以及(ii)可能想要使用booktabs包及其命令\toprule\midrule等来获得间距良好的水平线。

在此处输入图片描述

\documentclass{article}
\usepackage{booktabs,dcolumn}
\newcolumntype{d}{D{.}{.}{2.5}}           % alignment on decimal marker
\newcommand\mc[1]{\multicolumn{1}{c}{#1}} % shorthand macro
\begin{document}
\begin{table}
\centering
\caption{Dependent Variable: Enrollment}
\begin{tabular}{l ddd}
\toprule
\textbf{Regressor}       & \mc{\textbf{Model 1}} 
&  \mc{\textbf{Model 2}} & \mc{\textbf{Model 3}} \\
\midrule
frl        & -0.012   & -0.052   &      -0.156^{**} \\
           & (0.04)   & (0.06)   &      (0.06)      \\
minority   &          &  0.034   &       0.097^{*}  \\
           &          & (0.05)   &      (0.04)      \\
disting    &          &          &       0.439^{***}\\
           &          &          &      (0.06)      \\
cons       &  0.529^{***}& 0.530^{***}&  0.518^{***}\\
           & (0.03)      &(0.03)      &  (0.02)     \\
\midrule
$N$        & \mc{196} & \mc{196} &    \mc{196}   \\
$R^{2}$    &  0.001   &  0.003   &       0.235   \\
\midrule[\heavyrulewidth]
\multicolumn{4}{l}{(Standard errors in parentheses)}\\
\multicolumn{4}{l}{$^{***}\ p<0.01$; $^{**}\ p<0.05$; $^{*}\ p<0.1$}\\
\end{tabular}
\end{table}
\end{document} 

相关内容