I am having problems with tables in latex. Here is what I want:
Regressors Model 1 Model 2
Coefficient1 Lower1 Upper1 Coefficient2 Lower2 Upper2
$beta_{concern_2}$ 0.1903627 0.01208 0.89934 0.17054127 0.12093922 0.389928
and here is my latex code
\begin{table} [h!]
\begin{center}
\begin{tabular}{lcrl}
\hline
\multicolumn{1}{l}{Regressors} & \multicolumn{3}{c}{Model 1 }\\ \hline
& Coefficient & Lower limit & Upper Limit \\
\multicolumn{3}{r}{Model 2 }\\
& Coefficient & Lower limit & Upper Limit \\
$\beta_{concern_2}$ & 0.19036273 &0.01208 & 0.89934 & 0.17054127 & 0.12093922 & 0.389928 \\
\hline
\end{tabular}
\caption{Regression Coefficients of model 1 and model 2 }
\label{beta}
\end{center}
\end{table}
This does not work as I want. Can someone please fix this?
Thanks
Günal

\multicolumnto span multiple columns. So since you have 7 columns in the last row, your\tabularcommand needs 7 columns. – Alan Munn Jan 1 at 22:43