latexTabular {Hmisc} | R Documentation |
latexTabular
creates a character vector representing a matrix or
data frame in a simple tabular environment.
latexTabular(x, headings=colnames(x), align =paste(rep('c',ncol(x)),collapse=''), halign=paste(rep('c',ncol(x)),collapse=''), helvetica=TRUE, translate=TRUE, hline=0, ...)
x |
a matrix or data frame |
headings |
a vector of character strings specifying column
headings for latexTabular, defaulting to |
align |
a character strings specifying column
alignments for latexTabular, defaulting to
|
halign |
a character strings specifying alignment for column headings, defaulting to centered. |
helvetica |
set to |
translate |
set to |
hline |
set to 1 to put |
... |
if present, |
a character string containing LaTeX markup
Frank E. Harrell, Jr.,
Department of Biostatistics,
Vanderbilt University,
f.harrell@vanderbilt.edu
x <- matrix(1:6, nrow=2, dimnames=list(c('a','b'),c('c','d','this that'))) latexTabular(x) # creates x.tex in working directory