多行多列的 LaTeX 表格,有一列有问题

多行多列的 LaTeX 表格,有一列有问题

我不知道如何在下面的屏幕截图中放置百分比列。

我不知道如何添加百分比列

这是迄今为止我尝试过的。

在此处输入图片描述

\documentclass{article}
\usepackage{array, makecell, multirow}

\begin{document}

\begin{table}[htbp]
\renewcommand{\thetable}{\Roman{table}}
\setlength{\extrarowheight}{2pt}
\caption{Classification Table}
\label{tab:confusion-matrix}

\begin{center}
\begin{tabular}{|c|c|c|c|}\hline
\multicolumn{2}{|c|}{N=260}
& \multicolumn{2}{c|}{\bfseries Predicted} \\
  \cline{3-4}
   \multicolumn{2}{|c|}{} & \thead{Absent Nomophobias} & \thead{Has Nomophobia}\\
  \hline 
  \multirowcell{2.7}{\bfseries Actual}
    & \thead{Absent Nomophobia} & 4 & 15\\
    \cline{2-4}
    & \thead{Has Nomophobia} & 3 & 238\\
    \hline
\end{tabular}
\end{center}

\end{table}

\end{document}

相关内容