Running latex(rnorm(5),file="")
through the Hmisc
package will display both the contents of the table; for example:
$-0.8036409661674679$\tabularnewline
$ 1.2066652279406598$\tabularnewline
but it will also show the table preamble and ending; for example:
\end{center}
\end{table}
How do I force the command to only show the formatted contents of the table and not the table preamble/ending?
require(Hmisc)
latex(rnorm(5),file="")