I want this my latex table to have an additional column with a rotated-side header. I tried these answers but can not make headway.
\documentclass{article}
\usepackage{booktabs, multirow}
\usepackage{graphicx, float}
\begin{document}
\begin{table}[H]
\centering
\footnotesize
\label{tabb111}
% Please add the following required packages to your document preamble:
% \usepackage{multirow}
% \usepackage{graphicx}
\resizebox{\textwidth}{6.25em}{%
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|}
\hline
\multicolumn{1}{|c|}{\multirow{2}{}{}} & \multicolumn{3}{c|}{\textbf{Min. RMSE}} & \multicolumn{3}{c|}{\textbf{Rank}} & \multicolumn{3}{c|}{\textbf{Block Length}} \ \cline{2-10}
\multicolumn{1}{|c|}{} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} \ \hline
\textbf{NBB} & 1.57 & 0.97 & 1.43 & 5 & 5.0 & 5 & 6 & 4 & 3 \ \hline
\textbf{MBB1} & 1.57 & 0.9 & 1.26 & 3 & 3.5 & 4 & 2 & 2 & 4 \ \hline
\textbf{MBB2} & 1.57 & 0.9 & 1.26 & 3 & 3.5 & 3 & 2 & 2 & 6 \ \hline
\textbf{MBB3} & 1.57 & 0.89 & 1.21 & 3 & 2.0 & 2 & 2 & 9 & 6 \ \hline
\textbf{CBB} & \textbf{1.44} & \textbf{0.19} & \textbf{0.09} & 1 & 1.0 & 1 & 2 & 4 & 8 \ \hline
\end{tabular}%
}
\resizebox{\textwidth}{6.25em}{%
\begin{tabular}{|l|c|c|c|c|c|c|c|c|c|}
\hline
\multicolumn{1}{|c|}{\multirow{2}{}{.}} & \multicolumn{3}{c|}{\textbf{Value}} & \multicolumn{3}{c|}{\textbf{Rank}} & \multicolumn{3}{c|}{\textbf{Block Length}} \ \cline{2-10}
\multicolumn{1}{|c|}{} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} & \multicolumn{1}{l|}{$\phi = 0.8$} & \multicolumn{1}{l|}{$\phi = 0.9$} & \multicolumn{1}{l|}{$\phi = 0.95$} \ \hline
\textbf{NBB} & 4.72 & 2.92 & 4.28 & 5 & 5.0 & 5 & 6 & 4 & 3 \ \hline
\textbf{MBB1} & 4.71 & 2.69 & 3.78 & 3 & 3.5 & 4 & 2 & 2 & 4 \ \hline
\textbf{MBB2} & 4.71 & 2.69 & 3.77 & 3 & 3.5 & 3 & 2 & 2 & 6 \ \hline
\textbf{MBB3} & 4.71 & 2.67 & 3.64 & 3 & 2.0 & 2 & 2 & 9 & 6 \ \hline
\textbf{CBB} & \textbf{2.49} & \textbf{0.02} & \textbf{0.8} & 1 & 1.0 & 1 & 7 & 7 & 8 \ \hline
\end{tabular}%
}
\end{table}
\end{document}



resizeboxhere? Using this on the table totally distorts the font and makes it hard to read. – leandriis Sep 26 '21 at 11:47