
Last chance! 50% off unlimited learning
Sale ends in
This is similar to print.tabular
, but it inserts the code to
display the table in a LaTeX tabular environment. The toLatex.tabular
method works with the toLatex
generic
from utils.
toLatex(object, ...)
# S3 method for tabular
toLatex(object, file = "", options = NULL, append = FALSE, ...)
latex.tabular(object, ...)
The toLatex()
method returns x
invisibly, and prints the LaTeX script to the console.
table_options()
and booktabs()
return the previous settings.
The tabular object.
A filename or connection to which to write the LaTeX code, or
""
to write to the standard output.
A list of options to set for the duration of the call.
If TRUE
, opens file
for appending (if it is
a filename rather than a connection).
Settings for default formatting. See Details below.
The toLatex()
method produces LaTeX output suitable for inclusion in a Sweave
document.
The latex.tabular
function is set up
to work as a method for the latex
generic in Hmisc,
but is not registered as a method, so that tables can
work when Hmisc is not installed.
print.tabular
, table_options
,
toLatex
, latex
tab <- tabular( (Species + 1) ~ (n=1) + Format(digits=2)*
(Sepal.Length + Sepal.Width)*(mean + sd), data=iris )
toLatex(tab)
save <- booktabs()
toLatex(tab)
table_options(save)
Run the code above in your browser using DataLab