Nothing
#' Export Table to HTML Format
#'
#' Converts a data frame, data.table, or matrix to HTML format with optional CSS
#' styling for web display, HTML documents, or embedding in web applications.
#' Generates clean, standards-compliant HTML with professional styling options
#' including responsive design support, color schemes, and interactive features.
#' Requires \pkg{xtable} for export.
#'
#' @param table Data frame, data.table, or matrix to export. Can be output from
#' \code{desctable()}, \code{survtable()}, \code{fit()}, \code{uniscreen()},
#' \code{fullfit()}, \code{compfit()}, \code{multifit()}, or any tabular data.
#'
#' @param file Character string specifying the output HTML filename. Must have
#' \code{.html} or \code{.htm} extension. Example: \code{"results.html"}.
#'
#' @param caption Character string. Optional caption displayed below the table.
#' Supports basic HTML formatting. Default is \code{NULL}.
#'
#' @param format_headers Logical. If \code{TRUE}, formats column headers by
#' converting underscores to spaces and applying proper casing. Wraps statistical
#' notation ("\emph{n}", "\emph{p}") in \code{<i>} tags. Default is \code{TRUE}.
#'
#' @param variable_padding Logical. If \code{TRUE}, adds vertical spacing around
#' variable groups for improved readability. Particularly useful for multi-row
#' factor variables. Default is \code{FALSE}.
#'
#' @param bold_significant Logical. If \code{TRUE}, wraps significant \emph{p}-values
#' in \code{<b>} tags for bold display. Makes important results stand out
#' visually. Default is \code{TRUE}.
#'
#' @param bold_variables Logical. If \code{TRUE}, variable names are displayed
#' in bold. Default is \code{FALSE}.
#'
#' @param p_threshold Numeric. Threshold for bold \emph{p}-value formatting. Only
#' used when \code{bold_significant = TRUE}. Default is 0.05.
#'
#' @param indent_groups Logical. If \code{TRUE}, indents grouped rows using
#' non-breaking spaces (\code{ }) for hierarchical display. Useful for
#' factor variables in regression output. Default is \code{FALSE}.
#'
#' @param condense_table Logical. If \code{TRUE}, condenses table by showing
#' only essential rows. Automatically sets \code{indent_groups = TRUE}.
#' Default is \code{FALSE}.
#'
#' @param condense_quantitative Logical. If \code{TRUE}, condenses continuous
#' and survival variables into single rows while preserving all categorical
#' variable rows (including binary). Only applies to descriptive tables from
#' \code{desctable()}. Automatically sets \code{indent_groups = TRUE}. Unlike
#' \code{condense_table}, this does not collapse binary categorical variables.
#' Default is \code{FALSE}.
#'
#' @param zebra_stripes Logical. If \code{TRUE}, applies alternating background
#' shading to different variables (not individual rows) for visual grouping.
#' Default is \code{FALSE}.
#'
#' @param stripe_color Character string. HTML color specification for zebra
#' stripes. Can use hex codes (\code{"#EEEEEE"}), RGB (\code{"rgb(238,238,238)"}),
#' or color names (\code{"lightgray"}). Default is \code{"#EEEEEE"}.
#'
#' @param dark_header Logical. If \code{TRUE}, creates black background with
#' white text for the header row. Provides strong visual contrast.
#' Default is \code{FALSE}.
#'
#' @param include_css Logical. If \code{TRUE}, includes embedded CSS styling in
#' the output file for standalone HTML. Set to \code{FALSE} when embedding
#' in existing HTML with its own stylesheet. Default is \code{TRUE}.
#'
#' @param ... Additional arguments passed to \code{\link[xtable]{xtable}}.
#'
#' @return Invisibly returns \code{NULL}. Creates an HTML file at the specified
#' location that can be opened in web browsers or embedded in HTML documents.
#'
#' @details
#' \strong{Output Format:}
#'
#' The function generates standards-compliant HTML5 markup with:
#' \itemize{
#' \item Semantic \code{<table>} structure
#' \item Proper \code{<thead>} and \code{<tbody>} sections
#' \item Accessible header cells (\code{<th>})
#' \item Clean, readable markup
#' \item Optional embedded CSS styling
#' }
#'
#' \strong{Standalone vs. Embedded:}
#'
#' \emph{Standalone HTML (\code{include_css = TRUE}):}
#' \itemize{
#' \item Can be opened directly in web browsers
#' \item Includes all necessary styling
#' \item Self-contained, portable
#' \item Suitable for sharing via email or web hosting
#' }
#'
#' \emph{Embedded HTML (\code{include_css = FALSE}):}
#' \itemize{
#' \item For inclusion in existing HTML documents
#' \item No CSS included (use parent document's styles)
#' \item Smaller file size
#' \item Integrates with web frameworks (Shiny, R Markdown, Quarto)
#' }
#'
#' \strong{CSS Styling:}
#'
#' When \code{include_css = TRUE}, the function applies professional styling:
#' \itemize{
#' \item \strong{Table:} Border-collapse, sans-serif font (Arial), 20px margin
#' \item \strong{Cells:} 8px vertical × 12px horizontal padding, left-aligned text
#' \item \strong{Borders:} 1px solid \code{#DDD} (light gray)
#' \item \strong{Headers:} Bold text, light gray background (\code{#F2F2F2})
#' \item \strong{Numeric columns:} Center-aligned (auto-detected)
#' \item \strong{Caption:} Bold, 1.1em font, positioned below table
#' }
#'
#' \emph{With \code{dark_header = TRUE}:}
#' \itemize{
#' \item Header background: Black (\code{#000000})
#' \item Header text: White (\code{#FFFFFF})
#' \item Creates high contrast, modern appearance
#' }
#'
#' \emph{With \code{zebra_stripes = TRUE}:}
#' \itemize{
#' \item Alternating variable groups receive background color
#' \item Default color: \code{#EEEEEE} (light gray)
#' \item Applied via CSS class \code{.zebra-stripe}
#' \item Groups entire variable (all factor levels together)
#' }
#'
#' \strong{Hierarchical Display:}
#'
#' The \code{indent_groups} option creates visual hierarchy using HTML
#' non-breaking spaces:
#' \preformatted{
#' <td><b>Treatment</b></td> <!-- Variable name -->
#' <td> Control</td> <!-- Indented level -->
#' <td> Active</td> <!-- Indented level -->
#' }
#'
#' \strong{Integration with R Markdown/Quarto:}
#'
#' For R Markdown or Quarto documents:
#' \preformatted{
#' # Generate HTML fragment (no CSS)
#' table2html(results, "table.html", include_css = FALSE)
#' }
#'
#' Then include in your document chunk with \code{results='asis'}:
#' \preformatted{
#' cat(readLines("table.html"), sep = "\n")
#' }
#'
#' Or directly render without file:
#' \preformatted{
#' # For inline display
#' htmltools::HTML(
#' capture.output(
#' print(xtable::xtable(results), type = "html")
#' )
#' )
#' }
#'
#' \strong{Integration with Shiny:}
#'
#' For Shiny applications:
#' \preformatted{
#' # In server function
#' output$results_table <- renderUI(\{
#' table2html(results_data(), "temp.html", include_css = FALSE)
#' HTML(readLines("temp.html"))
#' \})
#'
#' # Or use directly with DT package for interactive tables
#' output$interactive_table <- DT::renderDT(\{
#' results_data()
#' \})
#' }
#'
#' \strong{Accessibility:}
#'
#' The generated HTML follows accessibility best practices:
#' \itemize{
#' \item Semantic table structure
#' \item Proper header cells (\code{<th>}) with scope attributes
#' \item Clear visual hierarchy
#' \item Adequate color contrast (when using default styles)
#' \item Screen reader friendly markup
#' }
#'
#' @seealso
#' \code{\link{autotable}} for automatic format detection,
#' \code{\link{table2pdf}} for PDF output,
#' \code{\link{table2tex}} for LaTeX output,
#' \code{\link{table2docx}} for Word documents,
#' \code{\link{table2pptx}} for PowerPoint,
#' \code{\link{table2rtf}} for Rich Text Format,
#' \code{\link{fit}} for regression tables,
#' \code{\link{desctable}} for descriptive tables
#'
#' @examples
#' data(clintrial)
#' data(clintrial_labels)
#'
#' # Create example table
#' results <- fit(
#' data = clintrial,
#' outcome = "os_status",
#' predictors = c("age", "sex", "treatment", "stage"),
#' labels = clintrial_labels
#' )
#'
#' # Example 1: Basic HTML export (standalone)
#' if (requireNamespace("xtable", quietly = TRUE)) {
#' table2html(results, file.path(tempdir(), "results.html"))
#' }
#'
#' \donttest{
#' # Example 2: With caption
#' table2html(results, file.path(tempdir(), "captioned.html"),
#' caption = "Table 1: Multivariable Logistic Regression Results")
#'
#' # Example 3: For embedding (no CSS)
#' table2html(results, file.path(tempdir(), "embed.html"),
#' include_css = FALSE)
#' # Include in your HTML document
#'
#' # Example 4: Hierarchical display
#' table2html(results, file.path(tempdir(), "indented.html"),
#' indent_groups = TRUE)
#'
#' # Example 5: Condensed table
#' table2html(results, file.path(tempdir(), "condensed.html"),
#' condense_table = TRUE)
#'
#' # Example 6: With zebra stripes
#' table2html(results, file.path(tempdir(), "striped.html"),
#' zebra_stripes = TRUE,
#' stripe_color = "#F0F0F0")
#'
#' # Example 7: Dark header style
#' table2html(results, file.path(tempdir(), "dark.html"),
#' dark_header = TRUE)
#'
#' # Example 8: Combination styling
#' table2html(results, file.path(tempdir(), "styled.html"),
#' zebra_stripes = TRUE,
#' dark_header = TRUE,
#' bold_significant = TRUE)
#'
#' # Example 9: Custom stripe color
#' table2html(results, file.path(tempdir(), "blue_stripes.html"),
#' zebra_stripes = TRUE,
#' stripe_color = "#E3F2FD") # Light blue
#'
#' # Example 10: Disable significance bolding
#' table2html(results, file.path(tempdir(), "no_bold.html"),
#' bold_significant = FALSE)
#'
#' # Example 11: Stricter significance threshold
#' table2html(results, file.path(tempdir(), "strict.html"),
#' bold_significant = TRUE,
#' p_threshold = 0.01)
#'
#' # Example 12: No header formatting
#' table2html(results, file.path(tempdir(), "raw_headers.html"),
#' format_headers = FALSE)
#'
#' # Example 13: Descriptive statistics table
#' desc_table <- desctable(clintrial, by = "treatment",
#' variables = c("age", "sex", "bmi"), labels = clintrial_labels)
#'
#' table2html(desc_table, file.path(tempdir(), "baseline.html"),
#' caption = "Table 1: Baseline Characteristics by Treatment Group")
#'
#' # Example 14: For R Markdown (no CSS, for inline display)
#' table2html(results, file.path(tempdir(), "rmd_table.html"),
#' include_css = FALSE,
#' indent_groups = TRUE)
#'
#' # Then in R Markdown, use a chunk with results='asis' to display inline:
#' cat(readLines(file.path(tempdir(), "rmd_table.html")), sep = "\n")
#'
#' # Example 15: Email-friendly version
#' table2html(results, file.path(tempdir(), "email.html"),
#' include_css = TRUE, # Self-contained
#' zebra_stripes = TRUE,
#' caption = "Regression Results - See Attached")
#' # Can be directly included in HTML emails
#'
#' # Example 16: Publication-ready web version
#' table2html(results, file.path(tempdir(), "publication.html"),
#' caption = "Table 2: Multivariable Analysis of Risk Factors",
#' indent_groups = TRUE,
#' zebra_stripes = FALSE, # Clean look
#' bold_significant = TRUE,
#' dark_header = FALSE)
#'
#' # Example 17: Modern dark theme
#' table2html(results, file.path(tempdir(), "dark_theme.html"),
#' dark_header = TRUE,
#' stripe_color = "#2A2A2A", # Dark gray stripes
#' zebra_stripes = TRUE)
#'
#' # Example 18: Minimal styling for custom CSS
#' table2html(results, file.path(tempdir(), "minimal.html"),
#' include_css = FALSE,
#' format_headers = FALSE,
#' bold_significant = FALSE)
#' # Apply your own CSS classes and styling
#'
#' # Example 19: Model comparison table
#' models <- list(
#' base = c("age", "sex"),
#' full = c("age", "sex", "treatment", "stage")
#' )
#'
#' comparison <- compfit(
#' data = clintrial,
#' outcome = "os_status",
#' model_list = models
#' )
#'
#' table2html(comparison, file.path(tempdir(), "comparison.html"),
#' caption = "Model Comparison Statistics")
#'
#' }
#' @family export functions
#' @export
table2html <- function(table,
file,
caption = NULL,
format_headers = TRUE,
variable_padding = FALSE,
bold_significant = TRUE,
bold_variables = FALSE,
p_threshold = 0.05,
indent_groups = FALSE,
condense_table = FALSE,
condense_quantitative = FALSE,
zebra_stripes = FALSE,
stripe_color = "#EEEEEE",
dark_header = FALSE,
include_css = TRUE,
...) {
if (!requireNamespace("xtable", quietly = TRUE)) {
stop("Package 'xtable' required. Install with: install.packages('xtable')")
}
if (!grepl("\\.(html|htm)$", tolower(file))) {
stop("File must have .html or .htm extension")
}
df <- as.data.frame(table)
has_n_row <- FALSE
n_row_data <- NULL
if (nrow(df) > 0 && "Variable" %in% names(df) && df$Variable[1] == "N") {
has_n_row <- TRUE
n_row_data <- df[1, ]
df <- df[-1, ]
}
## Apply condense/indent transformations first
if (condense_table) {
indent_groups <- TRUE
df <- condense_table_rows(df, indent_groups = indent_groups)
df <- format_indented_groups(df, indent_string = " ")
} else if (condense_quantitative) {
## Only condense continuous/survival variables (not categorical)
## Also set indent_groups = TRUE to avoid awkward empty Group column
indent_groups <- TRUE
df <- condense_quantitative_rows(df, indent_groups = indent_groups)
df <- format_indented_groups(df, indent_string = " ")
} else if (indent_groups) {
df <- format_indented_groups(df, indent_string = " ")
}
## Apply variable padding AFTER all other transformations
if (variable_padding && ("Variable" %in% names(df) || "variable" %in% names(df))) {
df <- add_variable_padding(df)
}
## Bold variable names (non-indented rows in Variable column)
if (bold_variables && "Variable" %in% names(df)) {
## Find rows where Variable is not empty and not indented (doesn't start with )
var_rows <- which(!is.na(df$Variable) &
df$Variable != "" &
df$Variable != "-" &
!grepl("^ ", df$Variable))
if (length(var_rows) > 0) {
df$Variable[var_rows] <- paste0("<b>", df$Variable[var_rows], "</b>")
}
}
if (bold_significant) {
df <- format_pvalues_export_html(df, p_threshold)
}
## Calculate var_groups on the FINAL data frame structure
var_groups <- NULL
if (zebra_stripes && "Variable" %in% names(df)) {
## Identify padding rows (all cells empty) - these should not be striped
is_padding_row <- apply(df, 1, function(row) {
all(is.na(row) | row == "" | row == " ")
})
## For indented tables, non-indented rows mark variable starts
if (indent_groups || condense_table || condense_quantitative) {
var_starts <- which(!grepl("^ ", df$Variable) &
!grepl("^<b> ", df$Variable) &
df$Variable != "" &
!is.na(df$Variable) &
!is_padding_row)
} else {
## For regular tables, any non-empty Variable marks a start
var_starts <- which(df$Variable != "" & !is.na(df$Variable) & !is_padding_row)
}
if (length(var_starts) > 0) {
var_groups <- integer(nrow(df))
for (i in seq_along(var_starts)) {
start_idx <- var_starts[i]
end_idx <- if (i < length(var_starts)) {
var_starts[i + 1] - 1
} else {
nrow(df)
}
var_groups[start_idx:end_idx] <- i
}
## Mark padding rows with 0 so they don't get striped
var_groups[is_padding_row] <- 0L
## Apply zebra stripes by tracking groups
df$.zebra_group <- var_groups
}
}
if (format_headers) {
if (has_n_row) {
names(df) <- format_column_headers_with_n_html(names(df), n_row_data)
} else {
names(df) <- format_column_headers_html(names(df))
}
}
## Remove zebra tracking column from display
display_df <- df
if (zebra_stripes && ".zebra_group" %in% names(display_df)) {
zebra_groups <- display_df$.zebra_group
display_df$.zebra_group <- NULL
} else {
zebra_groups <- NULL
}
xt <- xtable::xtable(display_df, caption = caption, ...)
## Build CSS (unchanged)
if (include_css) {
css <- paste0("<style>\n",
"table { \n",
"border-collapse: collapse; \n",
"font-family: Arial, sans-serif;\n",
"margin: 20px;\n",
"}\n",
"th, td { \n",
"padding: 8px 12px; \n",
"text-align: left; \n",
"border: 1px solid #ddd;\n",
"}\n")
if (indent_groups) {
css <- paste0(css,
"th:not(:first-child), \n",
"td:not(:first-child) { \n",
"text-align: center; \n",
"}\n")
} else {
css <- paste0(css,
"th:not(:nth-child(1)):not(:nth-child(2)), \n",
"td:not(:nth-child(1)):not(:nth-child(2)) { \n",
"text-align: center; \n",
"}\n")
}
## Header styling - dark or light
if (dark_header) {
css <- paste0(css,
"th { \n",
"background-color: #000000; \n",
"color: #FFFFFF; \n",
"font-weight: bold;\n",
"}\n")
} else {
css <- paste0(css,
"th { \n",
"background-color: #f2f2f2; \n",
"font-weight: bold;\n",
"}\n")
}
## Zebra stripe styling
if (zebra_stripes) {
css <- paste0(css,
"tr.zebra-stripe { \n",
"background-color: ", stripe_color, ";\n",
"}\n")
}
css <- paste0(css,
"caption {\n",
"text-align: left;\n",
"margin-top: 10px;\n",
"margin-bottom: 10px;\n",
"font-weight: bold;\n",
"font-size: 1.1em;\n",
"}\n",
"</style>\n")
}
## Generate HTML table
if (zebra_stripes && !is.null(zebra_groups)) {
## Capture the HTML output
html_output <- capture.output(
print(xt,
type = "html",
include.rownames = FALSE,
sanitize.text.function = identity,
sanitize.rownames.function = identity,
sanitize.colnames.function = identity,
...)
)
## Add classes to TR elements based on zebra groups
tr_count <- 0
for (i in seq_along(html_output)) {
if (grepl("^ <tr>", html_output[i])) {
tr_count <- tr_count + 1
if (tr_count <= length(zebra_groups)) {
group_num <- zebra_groups[tr_count]
if (!is.na(group_num) && group_num %% 2 == 1) {
html_output[i] <- gsub(" <tr>", ' <tr class="zebra-stripe">', html_output[i])
}
}
}
}
## Write everything to file
if (include_css) {
writeLines(c(css, html_output), file)
} else {
writeLines(html_output, file)
}
} else {
## Standard output without zebra stripes
if (include_css) {
cat(css, file = file)
print(xt,
type = "html",
file = file,
append = TRUE,
include.rownames = FALSE,
sanitize.text.function = identity,
sanitize.rownames.function = identity,
sanitize.colnames.function = identity,
...)
} else {
print(xt,
type = "html",
file = file,
append = FALSE,
include.rownames = FALSE,
sanitize.text.function = identity,
sanitize.rownames.function = identity,
sanitize.colnames.function = identity,
...)
}
}
message(sprintf("Table exported to %s", file))
invisible(NULL)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.