[Tex/LaTex] Two Rotated Tables on One Page

landscaperotatingtables

I am sorry – I see that there are multiple variations of the question I am going to ask, but I do not see an answer to solve my particular problem. I have two rotated tables that are somewhat narrow. Instead of placing them on two separate pages I'd like to present them both on one page. How can I most efficiently do this?

\documentclass[english]{article}
\usepackage{lscape}
 \usepackage{threeparttable}

\begin{document}
    \begin{landscape}
    \begin{table}\centering
    \scalebox{1}{
    \begin{threeparttable}
    \caption{Return Lag and Return Rate Descriptive Statistics for Electronics Dataset \label{tab:testa}}
    \begin{tabular}{lccccccc} \hline
    & \multicolumn{3}{c}{Return Rate} & \multicolumn{3}{c}{Return Lag} & Total Observations  \\ \cline{2-8}
     \multicolumn{1}{c}{ Category} & Average   & Std. Dev. & Coeff. of Var. & Average  & Std. Dev. & Coeff. of Var.   \\ \hline
    Audio  & 12\%   & 0.32  & 2.76  & 12.9  & 20.0  & 1.6  & 11,367  \\
    Auto Parts  & 14\%  & 0.35 & 2.44 & 21.9 & 54.1 & 2.5  & 7,211 \\
    Cable  & 11\% & 0.31 & 2.91 & 10.9  & 19.8 & 1.8  & 9,398  \\
    Computer  & 11\% & 0.31 & 2.90 & 11.1 & 23.0 & 2.1 & 21,811 \\
    Imaging  & 11\% & 0.31 & 2.92 & 11.8 & 19.9 & 1.7 & 7,823 \\
    Mobile Phone  & 16\% & 0.37 & 2.27 & 28.9 & 74.4 & 2.6 & 3,126 \\
    Phone & 14\%                            & 0.35                           & 2.47           & 16.1          & 30.6          & 1.9          & 5,777             \\
    TV & 8\%                             & 0.28                           & 3.28           & 11.3          & 21.5          & 1.9          & 9,413             \\
    TV Box  & 14\%                            & 0.34                           & 2.52           & 14.7          & 28.5          & 1.9          & 9,799             \\
     \textbf{Sample Average}  & \textbf{12\%} & \textbf{0.33} & \textbf{2.72}  & \textbf{15.5} & \textbf{32.4} & \textbf{2.0} & \textbf{1,201.05} \\ \hline
    \end{tabular}
    \end{threeparttable}}
    \end{table}%
    \end{landscape}

    \begin{landscape}
    \begin{table}\centering
    \scalebox{1}{
    \begin{threeparttable}
    \caption{Return Lag and Return Rate Descriptive Statistics for Jewelry Dataset \label{tab:testb}}
    \begin{tabular}{lccccccc} \hline
    & \multicolumn{3}{c}{Return Rate} & \multicolumn{3}{c}{Return Lag} & Total Observations  \\ \cline{2-8}
      \multicolumn{1}{c}{Category} & Average                         & Std. Dev.                      & Coeff. of Var. & Average       & Std. Dev.     & Coeff. of Var.                   \\ 
    Accessories & 4\%   & 0.19  & 5.18  & 23.28 & 19.69 & 0.85 & 20,583 \\
    Bracelets & 7\%   & 0.26  & 3.64  & 22.70 & 14.71 & 0.65 & 61,997 \\
    Earrings & 8\%   & 0.27  & 3.46  & 24.40 & 17.30 & 0.71 & 308,385 \\
    Necklaces & 7\%   & 0.25  & 3.67  & 23.74 & 18.12 & 0.76 & 255,470 \\
    Rings & 8\%   & 0.27  & 3.43  & 24.94 & 23.01 & 0.92 & 51,121 \\
    \textbf{Sample Average} & \textbf{7\%} & \textbf{0.25} & \textbf{3.87} & \textbf{23.81} & \textbf{18.57} & \textbf{0.78} & \textbf{616,127} \\ \hline
        \end{tabular}%
    \end{threeparttable}}
    \end{table}%
    \end{landscape}

\end{document}

Best Answer

enter image description here

Use only one landscape environment, instead of two.

\documentclass[english]{article}
\usepackage{lscape}
 \usepackage{threeparttable}

\begin{document}
    \begin{landscape}
    \begin{table}\centering
    \scalebox{1}{
    \begin{threeparttable}
    \caption{Return Lag and Return Rate Descriptive Statistics for Electronics Dataset \label{tab:testa}}
    \begin{tabular}{lccccccc} \hline
    & \multicolumn{3}{c}{Return Rate} & \multicolumn{3}{c}{Return Lag} & Total Observations  \\ \cline{2-8}
     \multicolumn{1}{c}{ Category} & Average   & Std. Dev. & Coeff. of Var. & Average  & Std. Dev. & Coeff. of Var.   \\ \hline
    Audio  & 12\%   & 0.32  & 2.76  & 12.9  & 20.0  & 1.6  & 11,367  \\
    Auto Parts  & 14\%  & 0.35 & 2.44 & 21.9 & 54.1 & 2.5  & 7,211 \\
    Cable  & 11\% & 0.31 & 2.91 & 10.9  & 19.8 & 1.8  & 9,398  \\
    Computer  & 11\% & 0.31 & 2.90 & 11.1 & 23.0 & 2.1 & 21,811 \\
    Imaging  & 11\% & 0.31 & 2.92 & 11.8 & 19.9 & 1.7 & 7,823 \\
    Mobile Phone  & 16\% & 0.37 & 2.27 & 28.9 & 74.4 & 2.6 & 3,126 \\
    Phone & 14\%                            & 0.35                           & 2.47           & 16.1          & 30.6          & 1.9          & 5,777             \\
    TV & 8\%                             & 0.28                           & 3.28           & 11.3          & 21.5          & 1.9          & 9,413             \\
    TV Box  & 14\%                            & 0.34                           & 2.52           & 14.7          & 28.5          & 1.9          & 9,799             \\
     \textbf{Sample Average}  & \textbf{12\%} & \textbf{0.33} & \textbf{2.72}  & \textbf{15.5} & \textbf{32.4} & \textbf{2.0} & \textbf{1,201.05} \\ \hline
    \end{tabular}
    \end{threeparttable}}
    \end{table}%
    \begin{table}\centering
    \scalebox{1}{
    \begin{threeparttable}
    \caption{Return Lag and Return Rate Descriptive Statistics for Jewelry Dataset \label{tab:testb}}
    \begin{tabular}{lccccccc} \hline
    & \multicolumn{3}{c}{Return Rate} & \multicolumn{3}{c}{Return Lag} & Total Observations  \\ \cline{2-8}
      \multicolumn{1}{c}{Category} & Average                         & Std. Dev.                      & Coeff. of Var. & Average       & Std. Dev.     & Coeff. of Var.                   \\ 
    Accessories & 4\%   & 0.19  & 5.18  & 23.28 & 19.69 & 0.85 & 20,583 \\
    Bracelets & 7\%   & 0.26  & 3.64  & 22.70 & 14.71 & 0.65 & 61,997 \\
    Earrings & 8\%   & 0.27  & 3.46  & 24.40 & 17.30 & 0.71 & 308,385 \\
    Necklaces & 7\%   & 0.25  & 3.67  & 23.74 & 18.12 & 0.76 & 255,470 \\
    Rings & 8\%   & 0.27  & 3.43  & 24.94 & 23.01 & 0.92 & 51,121 \\
    \textbf{Sample Average} & \textbf{7\%} & \textbf{0.25} & \textbf{3.87} & \textbf{23.81} & \textbf{18.57} & \textbf{0.78} & \textbf{616,127} \\ \hline
        \end{tabular}%
    \end{threeparttable}}
    \end{table}%
    \end{landscape}

\end{document}
Related Question