I usually hide some columns depending on the presentation. For example, I put the inner content of a table in a separate file in latex like "file.tex"
and then, depending on the presentation, I might use
the problem with esttab and estout is that they always export the outer part as well, i.e.
Is there a way to tell them not to do that?
A& B\\
C&D
C&D
\begin{table}[] \begin{tabular}{cH} \input{file.tex} \end{tabular} \end{table}
\begin{table}[cc]
\begin{tabular}{}
\end{tabular}
\end{table}
\begin{tabular}{}
\end{tabular}
\end{table}
Is there a way to tell them not to do that?
Comment