如何将表格放置在其中一列中而不是放在中央?

如何将表格放置在其中一列中而不是放在中央?

我有以下页面,

在此处输入图片描述

表 3 需要位于左侧列或右侧列。我该怎么做?以下是代码,

\begin{table*}
    \begin{adjustbox}{width=0.5\textwidth}
    \begin{tabular}{c c c c c c c c c }
    \hline
    \hline
        & 0 & 1 & 2 & 3 & 4 & 5 & 6 & Total\\
    \hline
    \hline
        \multirow{3}{*}{}Training Set & 7297 & 7004 & 521 & 3402 & 745 & 2979 & 1404 & 23352 \\

         \multirow{3}{*}{}Testing Set & 810 & 778 & 57 & 378 & 82 & 328 & 156 & 2589 \\

        \hline
        \multirow{3}{*}{}Data Set & 8107 & 7782 & 578 & 3780 & 827 & 3307 & 1560 & 25941 \\
    \hline
    \hline
    \end{tabular}
    \end{adjustbox}
    \label{Dataset}
    \caption{Number of galaxy images in each morphological class 0, 1, 2, 3, 4, 5, 6 (as represented in the Table 2)}
\end{table*}

相关内容