水平表:!您不能在这里使用“\hrule”,除非使用领导者

水平表:!您不能在这里使用“\hrule”,除非使用领导者

我想绘制一个水平表。当我运行代码时,我收到以下错误消息 *“!您不能使用。如果我移动下面的\hrule' here except with leaders行,我可以运行编译器,但表格标题是垂直的(不是水平的)\caption{Test Table}\label{tab:label_test}\end{adjustbox}

   \begin{table}[h!]
    \begin{adjustbox}{max width=1.5\textwidth, angle=90}
    \begin{tabular}{ l | c c | c c | c c | c c | c c}
    \hline\hline
          \textbf{Algoritmo} 
        & \textbf{NSL-KD}         
        & \textbf{CTU-13}         
        & \textbf{UNSW-NB15}      
        & \textbf{UGR16}          
        & \textbf{AndMall7}       
        & \textbf{CICIDS17}       
        & \textbf{CIDDS-001}      
        & \textbf{Netflow-IDS}    
        & \textbf{NGIDS-DS}       
        & \textbf{CICIDS18} \\ \hline      
    One-Class SVM      &       &       &       &       &      &       &       &       &       &       \\ 
    Isolation Forest   &       &       &       &       &      &       &       &       &       &       \\ \hline
    K-NN               &       &       &       &       &      &       &       &       &       &       \\ 
    ODIN               & 62.65 &       &       &       &      &       &       &       &       & 33.33 \\ \hline
    SDO                &       &       &       &       &      &       &       &       &       &       \\ 
    LOF                &       &       &       &       &      &       &       & 92.50 &       & 33.33 \\ 
    COF                &       &       &       &       &      &       &       &       &       & 33.33 \\ \hline
    K-Means            &       &       & 71.44 &       &      &       &       &       & 92.89 &       \\ 
    DBSCAN             &       &       &       & 32.83 &      &       &       &       &       &       \\ 
    LDCOF              &       &       &       &       &      &       &       &       &       &       \\ \hline
    FastADOB           &       &       &       &       &      &       &       &       &       & 33.33 \\ \hline
    HBOS               &       &       &       &       & 1.62 & 82.95 &       &       &       &       \\ 
    SOS                &       &       &       &       &      &       &       &       &       &       \\ 
    ISOS               &       &       &       &       &      &       &       &       &       &       \\ \hline
    SOM                &       & 11.25 &       &       &      &       & 89.62 &       &       &       \\ \hline\hline
    \end{tabular}    
    \caption{Test Table}\label{tab:label_test}
    \end{adjustbox}
    \end{table}

相关内容