print.xtable {xtable}R Documentation

Print Export Tables

Description

Function displaying or writing to disk the LaTeX or HTML code associated with the supplied object of class xtable.

Usage

print.xtable(x, type="latex", file="", append=FALSE, floating=TRUE, table.placement = "ht", caption.placement="bottom", latex.environments=c("center"), ...)

Arguments

x An object of class "xtable".
type Type of table to produce. Possible values for type are "latex" or "html". Default value is "latex".
file Name of file where the resulting code should be saved. If file=="", output is displayed on screen. Default value is "".
append If TRUE and file!="", code will be appended to file instead of overwriting file. Default value is FALSE.
floating If TRUE and type="latex", the resulting table will be a floating table (using \begin{table} and \end{table}). Default value is TRUE.
table.placement If floating=TRUE and type="latex", the floating table will have placement given by table.placement where table.placement must be NULL or contain only elements of {"h","t","b","p","!"}. Default value is "ht".
caption.placement The caption will be have placed at the bottom of the table if caption.placement is "bottom" and at the top of the table if it equals "top". Default value is "bottom".
latex.environments If floating=TRUE and type="latex", the specificed latex environments (provided as a character vector) will enclose the tabuluar environment. Default value is "center".
... Additional arguments. (Currently ignored.)

Details

This function displays or writes to disk the code to produce a table associated with an object x of class "xtable". The resulting code is either a LaTeX or HTML table, depending on the value of type.

Author(s)

David Dahl dbdahl@stat.wisc.edu

See Also

xtable, caption, label, vsep, align, digits, display, formatC


[Package xtable version 1.2-3 Index]