특정 위치의 테이블

특정 위치의 테이블

텍스트의 특정 위치에 표를 넣으려고 합니다. 내 상사는 테이블이 더 이상 부동 소수점이 되지 않도록 일종의 방정식에 테이블을 넣을 수 있다고 말했지만 그가 무슨 뜻인지는 잘 모르겠습니다. 예를 들어 내 코드의 일부는 다음과 같습니다.

    \begin{table}[H]
\begin{center}
\caption{\label{tab:IPF1} The observed number of counts of the infant survival data}
\begin{tabular}{@{} llcc @{}}
\toprule
& & \multicolumn{2}{c}{Survival}\\ 
\cmidrule{3-4}
Clinic & Care & No & Yes  \\
\midrule
A & Less & 3& 176  \\ 
&More & 4 & 293  \\ \addlinespace
B & Less & 17 & 197 \\ 
& More & 2 & 23 \\ 
\bottomrule
\end{tabular} 

\end{center}
\end{table}


Tables \ref{marginalcountcs1} and \ref{marginalcountca1} are the marginal counts of the cliques $[CS]$ and $[CA]$ respectively.

\begin{table}
    \begin{minipage}{.5\linewidth}
      \centering
            \caption{Marginal count of clique $[CS]$}
             \label{marginalcountcs1}
            \begin{tabular}{@{} lcc @{}}
                \toprule
                & \multicolumn{2}{c}{Survival}\\ 
                Clinic  & No & Yes  \\
                \midrule
                A & 7& 469  \\ 
                B & 19 & 220 \\
                \bottomrule

            \end{tabular} 
    \end{minipage}%
    \begin{minipage}{.5\linewidth}
      \centering
        \caption{Marginal count of clique $[CA]$} 
        \label{marginalcountca1}
        \begin{tabular}{@{} lcc @{}}
                \toprule
                & \multicolumn{2}{c}{Care}\\ 
                \cmidrule{2-3}
                Clinic  & Less & More \\
                \midrule
                A & 179 & 297  \\ 
                B & 214 & 25 \\
                \bottomrule

            \end{tabular} 
    \end{minipage} 
\end{table}

Now, the first step of the algorithm is setting the ML estimates to 1 for all the cells in the contingency table. This can be seen in Table \ref{tab:IPF1}.enter code here

그러나 테이블은 이렇게 그룹화됩니다. 여기에 이미지 설명을 입력하세요

\begin{table} 뒤에 [h], [ht], [b]와 같은 수많은 문자를 사용해 보았지만 작동하지 않았습니다.

관련 정보