Convert an S object to HTML
html.Rdhtml is a generic function, for which only two methods are currently
implemented, html.latex and a rudimentary
html.data.frame. The former uses the HeVeA LaTeX to HTML
translator by Maranget to create an HTML file from a LaTeX file like
the one produced by latex. html.default just runs
html.data.frame.
htmlVerbatim prints all of its arguments to the console in an
html verbatim environment, using a specified percent of the prevailing
character size. This is useful for R Markdown with knitr.
Most of the html-producing functions in the Hmisc and rms packages
return a character vector passed through htmltools::HTML so that
kintr will correctly format the result without the need for the
user putting results='asis' in the chunk header.
Usage
html(object, ...)
# S3 method for class 'latex'
html(object, file, where=c('cwd', 'tmp'),
method=c('hevea', 'htlatex'),
rmarkdown=FALSE, cleanup=TRUE, ...)
# S3 method for class 'data.frame'
html(object,
file=paste(first.word(deparse(substitute(object))),'html',sep='.'), header,
caption=NULL, rownames=FALSE, align='r', align.header='c',
bold.header=TRUE, col.header='Black',
border=2, width=NULL, size=100, translate=FALSE,
append=FALSE, link=NULL, linkCol=1,
linkType=c('href','name'), disableq=FALSE, ...)
# Default S3 method
html(object,
file=paste(first.word(deparse(substitute(object))),'html',sep='.'),
append=FALSE, link=NULL, linkCol=1, linkType=c('href','name'), ...)
htmlVerbatim(..., size=75, width=85, scroll=FALSE, rows=10, cols=100,
propts=NULL, omit1b=FALSE)Arguments
- object
a data frame or an object created by
latex. For the generichtmlis any object for which anhtmlmethod exists.- file
name of the file to create. The default file name is
object.htmlwhereobjectis the first word in the name of the argument forobject. Forhtml.latexspecifyfile=''orfile=character(0)to print html code to the console, as when usingknitr. For thedata.framemethod,filemay be set toFALSEwhich causes a character vector enclosed inhtmltools::HTMLto be returned instead of writing to the console.- where
for
html. Default is to put output files in current working directory. Specifywhere='tmp'to put in a system temporary directory area.- method
default is to use system command
heveato convert from LaTeX to html. Specifymethod='htlatex'to use system commandhtlatex, assuming the system packageTeX4htis installed.- rmarkdown
set to
TRUEif using RMarkdown (usually underknitrand RStudio). This causes html to be packaged for RMarkdown and output to go into the console stream.fileis ignored whenrmarkdown=TRUE.- cleanup
if using
method='htlatex'set toFALSEifwhere='cwd'to prevent deletion of auxiliary files created byhtlatexthat are not needed when using the finalhtmldocument (only the.cssfile is needed in addition to.html). If usingmethod='hevea',cleanup=TRUEcauses deletion of the generated.hauxfile.- header
vector of column names. Defaults to names in
object. Set toNULLto suppress column names.- caption
a character string to be used as a caption before the table
- rownames
set to
FALSEto ignore row names even if they are present- align
alignment for table columns (all are assumed to have the same if is a scalar). Specify
"c", "r", "l"for center, right, or left alignment.- align.header
same coding as for
alignbut pertains to header- bold.header
set to
FALSEto not bold face column headers- col.header
color for column headers
- border
set to 0 to not include table cell borders, 1 to include only outer borders, or 2 (the default) to put borders around cells too
- translate
set to
TRUEto run header and table cell text through thehtmlTranslatefunction- width
optional table width for
html.data.frame. For full page width usewidth="100%", for use inoptions()for printing objects.- size
a number between 0 and 100 representing the percent of the prevailing character size to be used by
htmlVerbatimand the data frame method.- append
set to
TRUEto append to an existing file- link
character vector specifying hyperlink names to attach to selected elements of the matrix or data frame. No hyperlinks are used if
linkis omitted or for elements oflinkthat are"". To allow multiple links per link,linkmay also be a character matrix shaped asobjectin which caselinkColis ignored.- linkCol
column number of
objectto which hyperlinks are attached. Defaults to first column.- linkType
defaults to
"href"- disableq
set to
TRUEto add code to the html table tag that makes Quarto not use its usual table style- ...
ignored except for
htmlVerbatim- is a list of objects toprint()- scroll
set to
TRUEto put the html in a scrollabletextarea- rows,cols
the number of rows and columns to devote to the visable part of the scrollable box
- propts
options, besides
quote=FALSEto pass to theprintmethod, forhtmlVerbatim- omit1b
for
htmlVerbatimifTRUEcauses an initial and a final line of output that is all blank to be deleted
Author
Frank E. Harrell, Jr.
Department of Biostatistics,
Vanderbilt University,
fh@fharrell.com
References
Maranget, Luc. HeVeA: a LaTeX to HTML translater. URL: http://para.inria.fr/~maranget/hevea/
Examples
if (FALSE) { # \dontrun{
x <- matrix(1:6, nrow=2, dimnames=list(c('a','b'),c('c','d','e')))
w <- latex(x)
h <- html(w) # run HeVeA to convert .tex to .html
h <- html(x) # convert x directly to html
w <- html(x, link=c('','B')) # hyperlink first row first col to B
# Assuming system package tex4ht is installed, easily convert advanced
# LaTeX tables to html
getHdata(pbc)
s <- summaryM(bili + albumin + stage + protime + sex + age + spiders ~ drug,
data=pbc, test=TRUE)
w <- latex(s, npct='slash', file='s.tex')
z <- html(w)
browseURL(z$file)
d <- describe(pbc)
w <- latex(d, file='d.tex')
z <- html(w)
browseURL(z$file)
} # }