html 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.
object: a data frame or an object created by latex. For the generic html is any object for which an html
method exists.
file: name of the file to create. The default file name is object.html where object is the first word in the name of the argument for object. For html.latex
specify file='' or file=character(0) to print html code to the console, as when using knitr. For the data.frame
method, file may be set to FALSE which causes a character vector enclosed in htmltools::HTML to be returned instead of writing to the console.
where: for html. Default is to put output files in current working directory. Specify where='tmp' to put in a system temporary directory area.
method: default is to use system command hevea to convert from LaTeX to html. Specifymethod='htlatex' to use system command htlatex, assuming the system package TeX4ht is installed.
rmarkdown: set to TRUE if using RMarkdown (usually under knitr and RStudio). This causes html to be packaged for RMarkdown and output to go into the console stream. file is ignored when rmarkdown=TRUE.
cleanup: if using method='htlatex' set to FALSE if where='cwd' to prevent deletion of auxiliary files created by htlatex that are not needed when using the final html
document (only the .css file is needed in addition to .html). If using method='hevea', cleanup=TRUE
causes deletion of the generated .haux file.
header: vector of column names. Defaults to names in object. Set to NULL to suppress column names.
caption: a character string to be used as a caption before the table
rownames: set to FALSE to 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 align but pertains to header
bold.header: set to FALSE to 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 TRUE to run header and table cell text through the htmlTranslate function
width: optional table width for html.data.frame. For full page width use width="100%", for use in options() for printing objects.
size: a number between 0 and 100 representing the percent of the prevailing character size to be used by htmlVerbatim and the data frame method.
append: set to TRUE to 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 link is omitted or for elements of link that are "". To allow multiple links per link, link may also be a character matrix shaped as object in which case linkCol is ignored.
linkCol: column number of object to which hyperlinks are attached. Defaults to first column.
linkType: defaults to "href"
disableq: set to TRUE to 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 to print()
scroll: set to TRUE to put the html in a scrollable textarea
rows,cols: the number of rows and columns to devote to the visable part of the scrollable box
propts: options, besides quote=FALSE to pass to the print method, for htmlVerbatim
omit1b: for htmlVerbatim if TRUE causes an initial and a final line of output that is all blank to be deleted