Code: Select all
\begin{table}[]
\centering
\caption{My caption}
\label{my-label}
\begin{tabular}{|l|l|l|l|}
\hline
\textbf{Criteria} & \textbf{k-Anonymity} & \textbf{(X, Y)-Anonymity} & \textbf{Multirelational k-Anonymity} \\ \hline
\textbf{Purpose} & Single table where each row represents a distinct person. & Single table where one person can appear in multiple rows. & Multiple relational tables. \\ \hline
\textbf{Weakness} & \begin{tabular}[c]{@{}l@{}}Does not guarantee diversity of sensitive attribute.\\ Does not guarantee sufficient privacy when person is present in multiple rows.\\ Does not offer sufficient privacy or renders table useless for dataminers when used on multi relational database.\end{tabular} & \begin{tabular}[c]{@{}l@{}}Does not offer sufficient privacy or renders table useless for dataminers when used on multi relational database.\\ Does not guarantee diversity of sensitive attribute.\end{tabular} & Does not guarantee diversity of sensitive attribute. \\ \hline
\textbf{Strength} & Intuitive, easy to check. & & \\ \hline
\end{tabular}
\end{table}
Code: Select all
\begin{table}[]
\centering
\caption{My caption}
\label{my-label}
\resizebox{\textwidth}{!}{\begin{tabular}{|l|l|l|l|}
\hline
\textbf{Criteria} & \textbf{k-Anonymity} & \textbf{(X, Y)-Anonymity} & \textbf{Multirelational k-Anonymity} \\ \hline
\textbf{Purpose} & Single table where each row represents a distinct person. & Single table where one person can appear in multiple rows. & Multiple relational tables. \\ \hline
\textbf{Weakness} & \begin{tabular}[c]{@{}l@{}}Does not guarantee diversity of sensitive attribute.\\ Does not guarantee sufficient privacy when person is present in multiple rows.\\ Does not offer sufficient privacy or renders table useless for dataminers when used on multi relational database.\end{tabular} & \begin{tabular}[c]{@{}l@{}}Does not offer sufficient privacy or renders table useless for dataminers when used on multi relational database.\\ Does not guarantee diversity of sensitive attribute.\end{tabular} & Does not guarantee diversity of sensitive attribute. \\ \hline
\textbf{Strength} & Intuitive, easy to check. & & \\ \hline
\end{tabular}}
\end{table}