\documentclass{article}
\usepackage{tabularx,multirow,booktabs}
\begin{document}
\begin{table}[h]
\centering
\begin{tabular}{@{}ccccccccc@{}}
\toprule
\multicolumn{2}{c}{} & \multicolumn{7}{c}{\bfseries COLUMN}\\
\multicolumn{2}{c}{} & \textbf{x} & & \textbf{y} & & \textbf{z} && x\\
\multirow{3}{*}{\bfseries ROW} & \textbf{p} & 6 &$>$& 4 &$<$& 5 &$<$&6\\
& \textbf{q} & 5 &$<$& 16 &$>$& 5 &=& 5\\
& \textbf{r} & 2 &$<$& 4 &$>$& -7 &$<$& 2\\
\bottomrule
\end{tabular}
\caption{Strategies}
\label{tab:dominantColumn}
\end{table}
\end{document}
I want to do this type of comparison for row wise also. How can I put the symbol (90 degree shifted needed). > changed to v and < change to ^.
I need to something like this.
\begin{table}[h]
\centering
\begin{tabular}{@{}ccccc@{}}
\toprule
\multicolumn{2}{c}{} & \multicolumn{3}{c}{\bfseries COLUMN}\\
\multicolumn{2}{c}{} & \textbf{x} & \textbf{y} & \textbf{z}\\
\multirow{4}{*}{\bfseries ROW} & \textbf{p} & 6 & 4 & 5\\
&&&&\\%here the symbo
& \textbf{q} & 5 & 16 & 5\\
&&&&\\%here the symbo
& \textbf{r} & 2 & 4 & -7\\
&&&&\\%here the symbol
& \textbf{p} & 6 & 4 & 5\\
\bottomrule
\end{tabular}
\caption{Strategies}
\label{tab:dominantRow}
\end{table}




-7entry. Right now, it's a hyphen, and looks too narrow. – barbara beeton Apr 06 '19 at 20:35