I am new to LaTeX and I am trying to create a table. I have read all the documentation about tables from Wikibooks. The problem I am having is while using \cline my column spacing is uneven.
I've have the following code:
%begin table 1
\begin{table*}
\centering
\caption{Description of datasets of proficiency test results from AAFCO check sample program}
\setlength{\abovecaptionskip}{10pt}
\setlength{\belowcaptionskip}{-12pt}
\setlength\extrarowheight{4pt} % sets row height
\setlength{\tabcolsep}{15pt} % sets column space
%\renewcommand{\arraystretch}{1}
\vspace{6pt}
\scalebox{1.0}{
\begin{tabular}{ | c | c | c | c | c | }
\hline
\multirow{2}{}{Year} & \multirow{2}{}{Feed Type} & \multicolumn{2}{ c| }{# of laboratories
submitting the PT results} & \multirow{2}{*}{# of analyses} \ \cline{3-4}
& & Min & Max & \
\hline
test & test & test & test & test \
\hline
\end{tabular}
\label{tab:tab1}
}
\end{table*}
%end table 1
one remedy that I have tried is using \multirow{1}{2.5cm}{Min}, but my text is not aligned. Picture is below
I am trying to recreate this table. Any help would be much appreciated. Thanks.





\scalebox{1.0}{scaling tables should b a non-aim, although a scale factor of 1 is just slowing things down and forcing a space at the start. I don't see any column spacing related to cline that is uneven. can you clarify what you want to change? – David Carlisle Mar 23 '22 at 17:30hspan=evenoption offered by thetabularraypackage. – leandriis Mar 23 '22 at 17:31table*environment mean that your document uses a two-column layout? Please advise. – Mico Mar 23 '22 at 18:06