혼란 매트릭스

혼란 매트릭스

Actual 열에 원래 합계를 추가하는 혼동 행렬 테이블을 만드는 중입니다.

내 테이블을 다음과 같이 보이게 하려면 어떻게 해야 합니까? (실제 열과 합계 열은 내 테이블에서 제거할 수 있습니다(이 모양을 원합니다)).

(녹색과 빨간색 색상 제외)

여기에 이미지 설명을 입력하세요

\documentclass{article}
\usepackage{multicol}
\usepackage{booktabs}
\usepackage{array}
\usepackage{multirow}
\begin{document}
\begin{table}[]
\begin{tabular}{ccccc}
\cline{3-5}
 &  & \multicolumn{2}{c}{\textbf{Predicted}} &  \\ \cline{3-5} 
 &  & \textbf{default} & \textbf{non-default} & \textbf{Actual} \\ \hline
\multirow{2}{*}{\textbf{References}} & \textbf{default} & 31300 & 6774 & 38074 \\ \cline{2-2}
 & \textbf{non-default} & 4053 & 72101 & 76154 \\ \hline
 & \textbf{Total} & 35353 & 78875 & 114228 \\ \cline{2-5} 
\end{tabular}
\end{table}
\end{document}

답변1

이는 다음과 같이 시작할 수 있는 기반을 제공합니다.

여기에 이미지 설명을 입력하세요

\documentclass{article}

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

\newcommand{\mc}{\multicolumn{1}{c}}

\begin{document}

\begin{tabular}{ *{5}{|c} | }
  \cline{3-4}
  \mc{} & & \multicolumn{2}{c|}{Condition Phase (worst case)} & \mc{} \\
  \cline{3-4}
  \mc{} & & \makecell{Condition \\ Positive/ \\ Shaded} & 
    \makecell{Condition \\ Negative/ \\ Unshaded} & \mc{\textbf{Actual}} \\
  \hline
  \multirow{5}{*}{\makecell{Testing \\ Phase \\ (best case)}} & 
    \makecell{Test \\ Positive/ \\ Shaded} & 
    \makecell{True positive \\ shaded \\ $T_p$ \\ \textit{(Correct)}} & 
    \makecell{False positive \\ shaded \\ $F_p$ \\ \textit{(Incorrect)}} &
    \makecell{Precision/Positive \\ Predictive Value \\ (PPV) \\ $\frac{T_p}{T_p + F_p} \times 100\%$} \\
  \cline{2-5}
  & 
    \makecell{Test \\ Negative/ \\ Unshaded} & 
    \makecell{False negative \\ unshaded \\ $F_n$ \\ \textit{(Incorrect)}} &
    \makecell{True negative \\ unshaded \\ $T_n$ \\ \textit{(Correct)}} &
    \makecell{Negative \\ Predictive Value \\ (NPV) \\ $\frac{T_n}{T_n + F_n} \times 100\%$} \\
  \hline
  \mc{} & & \makecell{Sensitivity/Recall \\ Rate (RR) \\ $\frac{T_p}{T_p + F_n} \times 100\%$} &
    \makecell{Specificity Rate \\ (SR) \\ $\frac{T_n}{T_n + F_p} \times 100\%$} & \mc{} \\
  \cline{3-4}
\end{tabular}

\end{document}

관련 정보