This function exports data frames or matrices to HTML, sending output to one or more of the console, viewer, and one or more files.
Either a data.frame
, table
, or matrix
,
or a list with three elements: pre
, input
, and post
.
The pre
and post
are simply prepended and postpended to
the HTML generated based on the input$input
element.
The output: a character vector with one or more
of "console
" (the raw concatenated input, without conversion
to HTML), "viewer
", which uses the RStudio viewer if available,
and one or more filenames in existing directories.
The CSS to use for the HTML table.
Invisibly, the (potentially concatenated) input
as character
vector.
exportToHTML(mtcars[1:5, 1:5]);
#> mpg cyl disp hp drat
#> Mazda RX4 21.0 6 160 110 3.90
#> Mazda RX4 Wag 21.0 6 160 110 3.90
#> Datsun 710 22.8 4 108 93 3.85
#> Hornet 4 Drive 21.4 6 258 110 3.08
#> Hornet Sportabout 18.7 8 360 175 3.15