diff --git a/DESCRIPTION b/DESCRIPTION index 5e2941a346..560f6a7a64 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -31,7 +31,7 @@ BugReports: https://github.com/rstudio/gt/issues Encoding: UTF-8 LazyData: true ByteCompile: true -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.1 Depends: R (>= 3.2.0) Imports: diff --git a/NAMESPACE b/NAMESPACE index 681ab0232e..2a0a6bd69a 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -1,10 +1,56 @@ # Generated by roxygen2: do not edit by hand +S3method(add_text_style,character) +S3method(add_text_style,shiny.tag) S3method(as.data.frame,gt_tbl) +S3method(cell_style_to_html,cell_border) +S3method(cell_style_to_html,cell_fill) +S3method(cell_style_to_html,cell_text) +S3method(cell_style_to_html,default) S3method(plot,gt_gtable) S3method(print,gt_group) S3method(print,gt_tbl) S3method(print,rtf_text) +S3method(resolve_location,cells_body) +S3method(resolve_location,cells_column_labels) +S3method(resolve_location,cells_column_spanners) +S3method(resolve_location,cells_row_groups) +S3method(resolve_location,cells_stub) +S3method(resolve_location,resolved) +S3method(set_footnote,cells_body) +S3method(set_footnote,cells_column_labels) +S3method(set_footnote,cells_column_spanners) +S3method(set_footnote,cells_footnotes) +S3method(set_footnote,cells_grand_summary) +S3method(set_footnote,cells_row_groups) +S3method(set_footnote,cells_source_notes) +S3method(set_footnote,cells_stub) +S3method(set_footnote,cells_stub_summary) +S3method(set_footnote,cells_stubhead) +S3method(set_footnote,cells_summary) +S3method(set_footnote,cells_title) +S3method(set_style,cells_body) +S3method(set_style,cells_column_labels) +S3method(set_style,cells_column_spanners) +S3method(set_style,cells_footnotes) +S3method(set_style,cells_grand_summary) +S3method(set_style,cells_row_groups) +S3method(set_style,cells_source_notes) +S3method(set_style,cells_stub) +S3method(set_style,cells_stub_grand_summary) +S3method(set_style,cells_stub_summary) +S3method(set_style,cells_stubhead) +S3method(set_style,cells_summary) +S3method(set_style,cells_title) +S3method(text_transform_at_location,cells_body) +S3method(text_transform_at_location,cells_column_labels) +S3method(text_transform_at_location,cells_column_spanners) +S3method(text_transform_at_location,cells_row_groups) +S3method(text_transform_at_location,cells_stub) +S3method(to_output_location,cells_body) +S3method(to_output_location,cells_stub) +S3method(to_output_location,default) +S3method(to_output_location,output_relative) export("%>%") export(adjust_luminance) export(as_latex) diff --git a/R/gt-package.R b/R/gt-package.R index 712340efd8..12461f6e67 100644 --- a/R/gt-package.R +++ b/R/gt-package.R @@ -23,5 +23,4 @@ #' @keywords internal -#' @aliases gt-package "_PACKAGE" diff --git a/R/helpers.R b/R/helpers.R index 4a9fe321dc..5642b68208 100644 --- a/R/helpers.R +++ b/R/helpers.R @@ -3318,6 +3318,7 @@ cell_text <- function( cell_style_structure(name = "cell_text", obj = style_vals) } +#' @export cell_style_to_html.cell_text <- function(style) { css <- unclass(style) @@ -3437,6 +3438,7 @@ cell_fill <- function( cell_style_structure("cell_fill", style_vals) } +#' @export cell_style_to_html.cell_fill <- function(style) { css <- list() @@ -3642,6 +3644,7 @@ cell_borders <- function( as_style(style = style_list) } +#' @export cell_style_to_html.cell_border <- function(style) { css <- unclass(style) diff --git a/R/location_methods.R b/R/location_methods.R index c2ddad67e4..8f7bb95093 100644 --- a/R/location_methods.R +++ b/R/location_methods.R @@ -263,11 +263,13 @@ resolve_location <- function(loc, data) { UseMethod("resolve_location") } +#' @export resolve_location.resolved <- function(loc, data) { # The object is already resolved loc } +#' @export resolve_location.cells_body <- function(loc, data) { loc$colnames <- @@ -286,6 +288,7 @@ resolve_location.cells_body <- function(loc, data) { loc } +#' @export resolve_location.cells_column_labels <- function(loc, data) { if (!is.null(loc$columns)) { @@ -306,6 +309,7 @@ resolve_location.cells_column_labels <- function(loc, data) { loc } +#' @export resolve_location.cells_column_spanners <- function(loc, data) { resolved <- resolve_cells_column_spanners(data = data, object = loc) @@ -317,6 +321,7 @@ resolve_location.cells_column_spanners <- function(loc, data) { loc } +#' @export resolve_location.cells_stub <- function(loc, data) { resolved <- resolve_cells_stub(data = data, object = loc) @@ -328,6 +333,7 @@ resolve_location.cells_stub <- function(loc, data) { loc } +#' @export resolve_location.cells_row_groups <- function(loc, data) { resolved <- resolve_cells_row_groups(data = data, object = loc) @@ -345,6 +351,7 @@ to_output_location <- function(loc, data) { UseMethod("to_output_location") } +#' @export to_output_location.default <- function(loc, data) { loc <- resolve_location(loc = loc, data = data) @@ -353,11 +360,13 @@ to_output_location.default <- function(loc, data) { loc } +#' @export to_output_location.output_relative <- function(loc, data) { # The object is already output-relative loc } +#' @export to_output_location.cells_body <- function(loc, data) { stub_df <- dt_stub_df_get(data = data) @@ -376,6 +385,7 @@ to_output_location.cells_body <- function(loc, data) { loc } +#' @export to_output_location.cells_stub <- function(loc, data) { stub_df <- dt_stub_df_get(data = data) diff --git a/R/tab_create_modify.R b/R/tab_create_modify.R index 5c3c887aae..152a32c633 100644 --- a/R/tab_create_modify.R +++ b/R/tab_create_modify.R @@ -2433,6 +2433,7 @@ set_footnote <- function(loc, data, footnote, placement) { UseMethod("set_footnote") } +#' @export set_footnote.cells_title <- function( loc, data, @@ -2475,6 +2476,7 @@ set_footnote.cells_title <- function( data } +#' @export set_footnote.cells_stubhead <- function( loc, data, @@ -2497,6 +2499,7 @@ set_footnote.cells_stubhead <- function( data } +#' @export set_footnote.cells_column_labels <- function( loc, data, @@ -2525,6 +2528,7 @@ set_footnote.cells_column_labels <- function( data } +#' @export set_footnote.cells_column_spanners <- function( loc, data, @@ -2551,6 +2555,7 @@ set_footnote.cells_column_spanners <- function( data } +#' @export set_footnote.cells_row_groups <- function( loc, data, @@ -2585,6 +2590,7 @@ set_footnote.cells_row_groups <- function( data } +#' @export set_footnote.cells_body <- function( loc, data, @@ -2613,6 +2619,7 @@ set_footnote.cells_body <- function( data } +#' @export set_footnote.cells_stub <- function( loc, data, @@ -2639,6 +2646,7 @@ set_footnote.cells_stub <- function( data } +#' @export set_footnote.cells_summary <- function( loc, data, @@ -2655,6 +2663,7 @@ set_footnote.cells_summary <- function( ) } +#' @export set_footnote.cells_grand_summary <- function( loc, data, @@ -2671,6 +2680,7 @@ set_footnote.cells_grand_summary <- function( ) } +#' @export set_footnote.cells_stub_summary <- function( loc, data, @@ -2703,6 +2713,7 @@ set_footnote.cells_stub_grand_summary <- function( ) } +#' @export set_footnote.cells_source_notes <- function( loc, data, @@ -2712,6 +2723,7 @@ set_footnote.cells_source_notes <- function( cli::cli_abort("Footnotes cannot be applied to source notes.") } +#' @export set_footnote.cells_footnotes <- function( loc, data, @@ -3502,6 +3514,7 @@ set_style <- function(loc, data, style) { UseMethod("set_style") } +#' @export set_style.cells_title <- function(loc, data, style) { title_components <- rlang::eval_tidy(loc$groups) @@ -3537,6 +3550,7 @@ set_style.cells_title <- function(loc, data, style) { data } +#' @export set_style.cells_stubhead <- function(loc, data, style) { data <- @@ -3553,6 +3567,7 @@ set_style.cells_stubhead <- function(loc, data, style) { data } +#' @export set_style.cells_column_labels <- function(loc, data, style) { resolved <- resolve_cells_column_labels(data = data, object = loc) @@ -3575,6 +3590,7 @@ set_style.cells_column_labels <- function(loc, data, style) { data } +#' @export set_style.cells_column_spanners <- function(loc, data, style) { resolved <- resolve_cells_column_spanners(data = data, object = loc) @@ -3595,6 +3611,7 @@ set_style.cells_column_spanners <- function(loc, data, style) { data } +#' @export set_style.cells_row_groups <- function(loc, data, style) { row_groups <- dt_row_groups_get(data = data) @@ -3623,6 +3640,7 @@ set_style.cells_row_groups <- function(loc, data, style) { data } +#' @export set_style.cells_body <- function(loc, data, style) { resolved <- resolve_cells_body(data = data, object = loc) @@ -3645,6 +3663,7 @@ set_style.cells_body <- function(loc, data, style) { data } +#' @export set_style.cells_stub <- function(loc, data, style) { resolved <- resolve_cells_stub(data = data, object = loc) @@ -3665,6 +3684,7 @@ set_style.cells_stub <- function(loc, data, style) { data } +#' @export set_style.cells_summary <- function(loc, data, style) { add_summary_location_row( @@ -3675,6 +3695,7 @@ set_style.cells_summary <- function(loc, data, style) { ) } +#' @export set_style.cells_grand_summary <- function(loc, data, style) { add_grand_summary_location_row( @@ -3685,6 +3706,7 @@ set_style.cells_grand_summary <- function(loc, data, style) { ) } +#' @export set_style.cells_stub_summary <- function(loc, data, style) { add_summary_location_row( @@ -3695,6 +3717,7 @@ set_style.cells_stub_summary <- function(loc, data, style) { ) } +#' @export set_style.cells_stub_grand_summary <- function(loc, data, style) { add_grand_summary_location_row( @@ -3705,6 +3728,7 @@ set_style.cells_stub_grand_summary <- function(loc, data, style) { ) } +#' @export set_style.cells_footnotes <- function(loc, data, style) { data <- @@ -3719,6 +3743,7 @@ set_style.cells_footnotes <- function(loc, data, style) { ) } +#' @export set_style.cells_source_notes <- function(loc, data, style) { data <- diff --git a/R/text_transform.R b/R/text_transform.R index 87d04ed5f5..7c7fd857cb 100644 --- a/R/text_transform.R +++ b/R/text_transform.R @@ -678,7 +678,8 @@ text_transform_at_location <- function(loc, data, fn = identity) { UseMethod("text_transform_at_location") } -# Text transformation using `cells_body()` +# Text transformation using `cells_body()` --- +#' @export text_transform_at_location.cells_body <- function( loc, data, @@ -704,7 +705,8 @@ text_transform_at_location.cells_body <- function( dt_body_set(data = data, body = body) } -# Text transformation using `cells_stub()` +# Text transformation using `cells_stub()` --- +#' @export text_transform_at_location.cells_stub <- function( loc, data, @@ -726,7 +728,8 @@ text_transform_at_location.cells_stub <- function( dt_body_set(data = data, body = body) } -# Text transformation using `cells_column_labels()` +# Text transformation using `cells_column_labels()` --- +#' @export text_transform_at_location.cells_column_labels <- function( loc, data, @@ -756,7 +759,8 @@ text_transform_at_location.cells_column_labels <- function( data } -# Text transformation using `cells_column_spanners()` +# Text transformation using `cells_column_spanners()` --- +#' @export text_transform_at_location.cells_column_spanners <- function( loc, data, @@ -784,6 +788,7 @@ text_transform_at_location.cells_column_spanners <- function( } # Text transformation using `cells_row_groups()` +#' @export text_transform_at_location.cells_row_groups <- function( loc, data, diff --git a/R/utils_render_html.R b/R/utils_render_html.R index 0270e488ef..b82695b9ed 100644 --- a/R/utils_render_html.R +++ b/R/utils_render_html.R @@ -206,6 +206,7 @@ cell_style_to_html <- function(style) { UseMethod("cell_style_to_html") } +#' @export cell_style_to_html.default <- function(style) { utils::str(style) diff --git a/R/utils_render_xml.R b/R/utils_render_xml.R index 24185abbf1..d7ff39c12b 100644 --- a/R/utils_render_xml.R +++ b/R/utils_render_xml.R @@ -2897,6 +2897,7 @@ add_text_style <- function(x, style) { UseMethod("add_text_style", x) } +#' @export add_text_style.character <- function(x, style) { x <- x %>% as_xml_node(create_ns = TRUE) @@ -2911,6 +2912,7 @@ add_text_style.character <- function(x, style) { as.character(x) } +#' @export add_text_style.shiny.tag <- function(x, style) { x <- x %>% as.character() diff --git a/man/adjust_luminance.Rd b/man/adjust_luminance.Rd index 97f532e3fa..7328f71d45 100644 --- a/man/adjust_luminance.Rd +++ b/man/adjust_luminance.Rd @@ -111,10 +111,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/as_latex.Rd b/man/as_latex.Rd index 0f106f449d..2617e1fff1 100644 --- a/man/as_latex.Rd +++ b/man/as_latex.Rd @@ -23,7 +23,7 @@ containing the LaTeX code. } \details{ LaTeX packages required to generate tables are: -booktabs, caption, longtable, colortbl, array, anyfontsize. +booktabs, caption, longtable, colortbl, array. In the event packages are not automatically added during the render phase of the document, please create and include a style file to load them. diff --git a/man/cell_borders.Rd b/man/cell_borders.Rd index 1e933a36d5..329d91ca9b 100644 --- a/man/cell_borders.Rd +++ b/man/cell_borders.Rd @@ -136,10 +136,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cell_fill.Rd b/man/cell_fill.Rd index e0bf1c5dca..fc1be4ce33 100644 --- a/man/cell_fill.Rd +++ b/man/cell_fill.Rd @@ -89,10 +89,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cell_text.Rd b/man/cell_text.Rd index 4c1207158c..f8fcadd95c 100644 --- a/man/cell_text.Rd +++ b/man/cell_text.Rd @@ -182,10 +182,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_body.Rd b/man/cells_body.Rd index e0722b9e91..dc8ba7f6bd 100644 --- a/man/cells_body.Rd +++ b/man/cells_body.Rd @@ -163,10 +163,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_column_labels.Rd b/man/cells_column_labels.Rd index ca6ad6b607..44626083b2 100644 --- a/man/cells_column_labels.Rd +++ b/man/cells_column_labels.Rd @@ -141,10 +141,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_column_spanners.Rd b/man/cells_column_spanners.Rd index bb07806248..b3455a147e 100644 --- a/man/cells_column_spanners.Rd +++ b/man/cells_column_spanners.Rd @@ -121,10 +121,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_footnotes.Rd b/man/cells_footnotes.Rd index c927e9868b..91a87024a0 100644 --- a/man/cells_footnotes.Rd +++ b/man/cells_footnotes.Rd @@ -125,10 +125,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_grand_summary.Rd b/man/cells_grand_summary.Rd index a1c5820ea7..0d0bb9bfb5 100644 --- a/man/cells_grand_summary.Rd +++ b/man/cells_grand_summary.Rd @@ -168,10 +168,10 @@ Other helper functions: \code{\link{cells_footnotes}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_row_groups.Rd b/man/cells_row_groups.Rd index 86ecd4aa60..a72556b897 100644 --- a/man/cells_row_groups.Rd +++ b/man/cells_row_groups.Rd @@ -133,10 +133,10 @@ Other helper functions: \code{\link{cells_footnotes}()}, \code{\link{cells_grand_summary}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_source_notes.Rd b/man/cells_source_notes.Rd index 32dd9244ed..4802f79df5 100644 --- a/man/cells_source_notes.Rd +++ b/man/cells_source_notes.Rd @@ -111,10 +111,10 @@ Other helper functions: \code{\link{cells_footnotes}()}, \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_stub_grand_summary.Rd b/man/cells_stub_grand_summary.Rd index d05c0cc834..f33393e556 100644 --- a/man/cells_stub_grand_summary.Rd +++ b/man/cells_stub_grand_summary.Rd @@ -140,9 +140,9 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_stub_summary.Rd b/man/cells_stub_summary.Rd index cd78b6dbdc..7c1cb6a664 100644 --- a/man/cells_stub_summary.Rd +++ b/man/cells_stub_summary.Rd @@ -169,9 +169,9 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_stubhead.Rd b/man/cells_stubhead.Rd index cc48629ff2..05bf8343aa 100644 --- a/man/cells_stubhead.Rd +++ b/man/cells_stubhead.Rd @@ -108,9 +108,9 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/cells_summary.Rd b/man/cells_summary.Rd index aca27bbb44..2bbcf773c7 100644 --- a/man/cells_summary.Rd +++ b/man/cells_summary.Rd @@ -205,10 +205,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, \code{\link{default_fonts}()}, diff --git a/man/cells_title.Rd b/man/cells_title.Rd index 350a56b1a9..dc98460c6f 100644 --- a/man/cells_title.Rd +++ b/man/cells_title.Rd @@ -113,10 +113,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{currency}()}, \code{\link{default_fonts}()}, diff --git a/man/cols_add.Rd b/man/cols_add.Rd index 6f334e26cb..946ee7a30f 100644 --- a/man/cols_add.Rd +++ b/man/cols_add.Rd @@ -210,18 +210,18 @@ each cell of \code{ext} was by necessity filled with an \code{NA} value. \seealso{ Other column modification functions: -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_align.Rd b/man/cols_align.Rd index 02b2027673..b68f68af31 100644 --- a/man/cols_align.Rd +++ b/man/cols_align.Rd @@ -93,15 +93,15 @@ Other column modification functions: \code{\link{cols_add}()}, \code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_align_decimal.Rd b/man/cols_align_decimal.Rd index f044681769..abf4da78f6 100644 --- a/man/cols_align_decimal.Rd +++ b/man/cols_align_decimal.Rd @@ -101,15 +101,15 @@ Other column modification functions: \code{\link{cols_add}()}, \code{\link{cols_align}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_hide.Rd b/man/cols_hide.Rd index 39ed0dd88d..4e871a3fe1 100644 --- a/man/cols_hide.Rd +++ b/man/cols_hide.Rd @@ -104,17 +104,17 @@ display of the table. Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, -\code{\link{cols_label_with}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_label.Rd b/man/cols_label.Rd index 7c899603bf..41130011fe 100644 --- a/man/cols_label.Rd +++ b/man/cols_label.Rd @@ -320,17 +320,17 @@ will materialize. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, \code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_label_with.Rd b/man/cols_label_with.Rd index 5d39d3475b..e0c731e8f8 100644 --- a/man/cols_label_with.Rd +++ b/man/cols_label_with.Rd @@ -163,17 +163,17 @@ interpreted as Markdown text. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, \code{\link{cols_label}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_merge.Rd b/man/cols_merge.Rd index 914a91ac1d..8d261b853d 100644 --- a/man/cols_merge.Rd +++ b/man/cols_merge.Rd @@ -203,17 +203,17 @@ drop parts of the output text whenever missing values are encountered. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_merge_n_pct.Rd b/man/cols_merge_n_pct.Rd index 887d3e572c..9f384221e3 100644 --- a/man/cols_merge_n_pct.Rd +++ b/man/cols_merge_n_pct.Rd @@ -159,17 +159,17 @@ merge the \code{n} and \code{frac} columns (and the \code{frac} column is format \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_merge_range.Rd b/man/cols_merge_range.Rd index bbc3369713..f4c94d7adb 100644 --- a/man/cols_merge_range.Rd +++ b/man/cols_merge_range.Rd @@ -162,17 +162,17 @@ better describe the content. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_merge_uncert.Rd b/man/cols_merge_uncert.Rd index efa0a04ec0..d7373e29a0 100644 --- a/man/cols_merge_uncert.Rd +++ b/man/cols_merge_uncert.Rd @@ -157,17 +157,17 @@ updated with \code{\link[=cols_label]{cols_label()}} to better describe the cont \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_move.Rd b/man/cols_move.Rd index 6f1d04ed5e..32863730e1 100644 --- a/man/cols_move.Rd +++ b/man/cols_move.Rd @@ -93,15 +93,15 @@ position the \code{population} column after the \code{country_name} column by us \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, \code{\link{cols_nanoplot}()}, diff --git a/man/cols_move_to_end.Rd b/man/cols_move_to_end.Rd index 63b75bc6b6..63a018c0ab 100644 --- a/man/cols_move_to_end.Rd +++ b/man/cols_move_to_end.Rd @@ -93,17 +93,17 @@ columns to the end of the column series. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, -\code{\link{cols_move_to_start}()}, \code{\link{cols_move}()}, +\code{\link{cols_move_to_start}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_move_to_start.Rd b/man/cols_move_to_start.Rd index 91264fed29..c848dbb80b 100644 --- a/man/cols_move_to_start.Rd +++ b/man/cols_move_to_start.Rd @@ -94,17 +94,17 @@ columns to the start of the column series. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, -\code{\link{cols_move_to_end}()}, \code{\link{cols_move}()}, +\code{\link{cols_move_to_end}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, diff --git a/man/cols_nanoplot.Rd b/man/cols_nanoplot.Rd index c1a3272275..9ba3636de6 100644 --- a/man/cols_nanoplot.Rd +++ b/man/cols_nanoplot.Rd @@ -643,18 +643,18 @@ hover. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()}, \code{\link{cols_width}()} diff --git a/man/cols_unhide.Rd b/man/cols_unhide.Rd index bb65720392..103eb65032 100644 --- a/man/cols_unhide.Rd +++ b/man/cols_unhide.Rd @@ -90,18 +90,18 @@ the \code{cols_unhide()} function becomes useful. Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_units}()}, \code{\link{cols_width}()} diff --git a/man/cols_units.Rd b/man/cols_units.Rd index e27ca512a8..515b4b9099 100644 --- a/man/cols_units.Rd +++ b/man/cols_units.Rd @@ -259,18 +259,18 @@ what the last four columns contain. \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_width}()} diff --git a/man/cols_width.Rd b/man/cols_width.Rd index 5133799cc5..a9ed51f2bf 100644 --- a/man/cols_width.Rd +++ b/man/cols_width.Rd @@ -98,18 +98,18 @@ named arguments in \code{...}, specifying the exact widths for table columns \seealso{ Other column modification functions: \code{\link{cols_add}()}, -\code{\link{cols_align_decimal}()}, \code{\link{cols_align}()}, +\code{\link{cols_align_decimal}()}, \code{\link{cols_hide}()}, -\code{\link{cols_label_with}()}, \code{\link{cols_label}()}, +\code{\link{cols_label_with}()}, +\code{\link{cols_merge}()}, \code{\link{cols_merge_n_pct}()}, \code{\link{cols_merge_range}()}, \code{\link{cols_merge_uncert}()}, -\code{\link{cols_merge}()}, +\code{\link{cols_move}()}, \code{\link{cols_move_to_end}()}, \code{\link{cols_move_to_start}()}, -\code{\link{cols_move}()}, \code{\link{cols_nanoplot}()}, \code{\link{cols_unhide}()}, \code{\link{cols_units}()} diff --git a/man/currency.Rd b/man/currency.Rd index 39e68c28b3..2310542d35 100644 --- a/man/currency.Rd +++ b/man/currency.Rd @@ -94,10 +94,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{default_fonts}()}, diff --git a/man/data_color.Rd b/man/data_color.Rd index 5b294d8442..6e163937f4 100644 --- a/man/data_color.Rd +++ b/man/data_color.Rd @@ -703,12 +703,13 @@ gray cells for the missing values (we also removed the \code{"NA"} text with \seealso{ Other data formatting functions: +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -728,7 +729,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/default_fonts.Rd b/man/default_fonts.Rd index 9b7e1c0def..9a68c43687 100644 --- a/man/default_fonts.Rd +++ b/man/default_fonts.Rd @@ -74,10 +74,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/define_units.Rd b/man/define_units.Rd index 9a9867a15f..b5e7bb2c3a 100644 --- a/man/define_units.Rd +++ b/man/define_units.Rd @@ -77,10 +77,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/escape_latex.Rd b/man/escape_latex.Rd index 8bc10c9e31..39bf128f66 100644 --- a/man/escape_latex.Rd +++ b/man/escape_latex.Rd @@ -44,10 +44,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/fmt.Rd b/man/fmt.Rd index d8f86a6089..0a9d68b2ad 100644 --- a/man/fmt.Rd +++ b/man/fmt.Rd @@ -154,8 +154,8 @@ Other data formatting functions: \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, diff --git a/man/fmt_auto.Rd b/man/fmt_auto.Rd index ee78a30c14..e26fb89d65 100644 --- a/man/fmt_auto.Rd +++ b/man/fmt_auto.Rd @@ -175,11 +175,12 @@ scientific notation. This is done by using the \code{lg_num_pref = "suf"} option \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -199,7 +200,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_bins.Rd b/man/fmt_bins.Rd index cc321f63a7..8696681006 100644 --- a/man/fmt_bins.Rd +++ b/man/fmt_bins.Rd @@ -202,11 +202,12 @@ formula syntax). \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -226,7 +227,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_bytes.Rd b/man/fmt_bytes.Rd index 47261bbc2b..953189b9b7 100644 --- a/man/fmt_bytes.Rd +++ b/man/fmt_bytes.Rd @@ -329,11 +329,12 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_bytes]{vec_ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -353,7 +354,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_currency.Rd b/man/fmt_currency.Rd index 0c717493bc..76aedf83f8 100644 --- a/man/fmt_currency.Rd +++ b/man/fmt_currency.Rd @@ -538,11 +538,12 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -562,7 +563,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_date.Rd b/man/fmt_date.Rd index 35969859e7..87e6acf46c 100644 --- a/man/fmt_date.Rd +++ b/man/fmt_date.Rd @@ -310,6 +310,7 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_date]{vec_f Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, @@ -334,7 +335,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_datetime.Rd b/man/fmt_datetime.Rd index 473d91dcff..1773df7738 100644 --- a/man/fmt_datetime.Rd +++ b/man/fmt_datetime.Rd @@ -983,6 +983,7 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, @@ -1007,7 +1008,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_duration.Rd b/man/fmt_duration.Rd index 179c375191..e325518e7c 100644 --- a/man/fmt_duration.Rd +++ b/man/fmt_duration.Rd @@ -312,12 +312,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, \code{\link{fmt_fraction}()}, @@ -336,7 +337,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_engineering.Rd b/man/fmt_engineering.Rd index b91eb56ba1..3d3b4b2730 100644 --- a/man/fmt_engineering.Rd +++ b/man/fmt_engineering.Rd @@ -301,12 +301,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_flag}()}, \code{\link{fmt_fraction}()}, @@ -325,7 +326,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_flag.Rd b/man/fmt_flag.Rd index 1c1eec725d..a4cd81b1af 100644 --- a/man/fmt_flag.Rd +++ b/man/fmt_flag.Rd @@ -273,12 +273,13 @@ tooltip text showing the name of the country. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_fraction}()}, @@ -297,7 +298,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_fraction.Rd b/man/fmt_fraction.Rd index af47c40844..3e2ea352b3 100644 --- a/man/fmt_fraction.Rd +++ b/man/fmt_fraction.Rd @@ -333,12 +333,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -357,7 +358,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_icon.Rd b/man/fmt_icon.Rd index 59f6a48ecb..5fbcae0896 100644 --- a/man/fmt_icon.Rd +++ b/man/fmt_icon.Rd @@ -403,12 +403,13 @@ scores. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -427,7 +428,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_image.Rd b/man/fmt_image.Rd index 3443f68c1f..fa99f7ce74 100644 --- a/man/fmt_image.Rd +++ b/man/fmt_image.Rd @@ -245,12 +245,13 @@ graphics files on disk. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -269,7 +270,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_index.Rd b/man/fmt_index.Rd index 394d836adc..a8d16e7037 100644 --- a/man/fmt_index.Rd +++ b/man/fmt_index.Rd @@ -219,12 +219,13 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_index]{vec_ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -243,7 +244,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_integer.Rd b/man/fmt_integer.Rd index 2c5e9048b2..d7be73d358 100644 --- a/man/fmt_integer.Rd +++ b/man/fmt_integer.Rd @@ -353,12 +353,13 @@ a vector? Take a look at the vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -377,7 +378,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_markdown.Rd b/man/fmt_markdown.Rd index 5ad1d5e8a9..ec4ef1a83e 100644 --- a/man/fmt_markdown.Rd +++ b/man/fmt_markdown.Rd @@ -260,12 +260,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -284,7 +285,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_number.Rd b/man/fmt_number.Rd index ad8353101f..c0d3921797 100644 --- a/man/fmt_number.Rd +++ b/man/fmt_number.Rd @@ -457,12 +457,13 @@ this function: \code{\link[=vec_fmt_number]{vec_fmt_number()}}. Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -481,7 +482,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_partsper.Rd b/man/fmt_partsper.Rd index a09b49b5a0..9cb370dd29 100644 --- a/man/fmt_partsper.Rd +++ b/man/fmt_partsper.Rd @@ -357,12 +357,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -381,7 +382,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_passthrough.Rd b/man/fmt_passthrough.Rd index fb9a5d1795..502b07bbaa 100644 --- a/man/fmt_passthrough.Rd +++ b/man/fmt_passthrough.Rd @@ -172,12 +172,13 @@ an \code{"s"} character. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -196,7 +197,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_percent.Rd b/man/fmt_percent.Rd index 43d7e21b42..f269eb31fc 100644 --- a/man/fmt_percent.Rd +++ b/man/fmt_percent.Rd @@ -346,12 +346,13 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_percent]{ve Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -370,7 +371,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_roman.Rd b/man/fmt_roman.Rd index 2002b98e73..8a340428ee 100644 --- a/man/fmt_roman.Rd +++ b/man/fmt_roman.Rd @@ -193,12 +193,13 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_roman]{vec_ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -217,7 +218,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_scientific.Rd b/man/fmt_scientific.Rd index f7c81b2322..305568acac 100644 --- a/man/fmt_scientific.Rd +++ b/man/fmt_scientific.Rd @@ -358,12 +358,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -382,7 +383,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_spelled_num.Rd b/man/fmt_spelled_num.Rd index dee7d3570d..ac01cceaa8 100644 --- a/man/fmt_spelled_num.Rd +++ b/man/fmt_spelled_num.Rd @@ -262,12 +262,13 @@ The vector-formatting version of this function: Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -286,7 +287,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_time.Rd b/man/fmt_time.Rd index 0f6019d590..8f9b93b011 100644 --- a/man/fmt_time.Rd +++ b/man/fmt_time.Rd @@ -296,12 +296,13 @@ The vector-formatting version of this function: \code{\link[=vec_fmt_time]{vec_f Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -320,7 +321,6 @@ Other data formatting functions: \code{\link{fmt_spelled_num}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_units.Rd b/man/fmt_units.Rd index 293e01fd3e..dea241b81f 100644 --- a/man/fmt_units.Rd +++ b/man/fmt_units.Rd @@ -209,12 +209,13 @@ but rather \code{" ^-1"}). \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -233,7 +234,6 @@ Other data formatting functions: \code{\link{fmt_spelled_num}()}, \code{\link{fmt_time}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/fmt_url.Rd b/man/fmt_url.Rd index d7053488c5..f022074688 100644 --- a/man/fmt_url.Rd +++ b/man/fmt_url.Rd @@ -348,12 +348,13 @@ you to handle them with \code{\link[=sub_missing]{sub_missing()}}. Here's an exa \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -372,7 +373,6 @@ Other data formatting functions: \code{\link{fmt_spelled_num}()}, \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/from_column.Rd b/man/from_column.Rd index d4a189bcfe..744192d8aa 100644 --- a/man/from_column.Rd +++ b/man/from_column.Rd @@ -167,10 +167,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/google_font.Rd b/man/google_font.Rd index 2f0dfa0f21..1893c2a91c 100644 --- a/man/google_font.Rd +++ b/man/google_font.Rd @@ -108,10 +108,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/gt-package.Rd b/man/gt-package.Rd index 747e520702..28c1d2be72 100644 --- a/man/gt-package.Rd +++ b/man/gt-package.Rd @@ -3,7 +3,6 @@ \docType{package} \name{gt-package} \alias{gt-package} -\alias{_PACKAGE} \title{gt: Easily Create Presentation-Ready Display Tables} \description{ Build display tables from tabular data with an easy-to-use set of functions. With its progressive approach, we can construct display tables with a cohesive set of table parts. Table values can be formatted using any of the included formatting functions. Footnotes and cell styles can be precisely added through a location targeting system. The way in which 'gt' handles things for you means that you don't often have to worry about the fine details. diff --git a/man/gt_latex_dependencies.Rd b/man/gt_latex_dependencies.Rd index 501ec9be1a..b88f144657 100644 --- a/man/gt_latex_dependencies.Rd +++ b/man/gt_latex_dependencies.Rd @@ -68,10 +68,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/html.Rd b/man/html.Rd index d8910560d0..8a003c9857 100644 --- a/man/html.Rd +++ b/man/html.Rd @@ -73,10 +73,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/md.Rd b/man/md.Rd index 946e1cc2fc..094dc6709e 100644 --- a/man/md.Rd +++ b/man/md.Rd @@ -67,10 +67,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/nanoplot_options.Rd b/man/nanoplot_options.Rd index 91a2865130..6dfed3665c 100644 --- a/man/nanoplot_options.Rd +++ b/man/nanoplot_options.Rd @@ -310,10 +310,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/pct.Rd b/man/pct.Rd index c8fcffa0f8..b317bcc224 100644 --- a/man/pct.Rd +++ b/man/pct.Rd @@ -71,10 +71,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/px.Rd b/man/px.Rd index 32cf1cd0ae..29e2cec80d 100644 --- a/man/px.Rd +++ b/man/px.Rd @@ -69,10 +69,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/random_id.Rd b/man/random_id.Rd index fa7c076a75..2b74987f17 100644 --- a/man/random_id.Rd +++ b/man/random_id.Rd @@ -45,10 +45,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/stub.Rd b/man/stub.Rd index 1fb8637d4c..ed0a692b43 100644 --- a/man/stub.Rd +++ b/man/stub.Rd @@ -67,10 +67,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/sub_large_vals.Rd b/man/sub_large_vals.Rd index 779e9d3544..cc6892f037 100644 --- a/man/sub_large_vals.Rd +++ b/man/sub_large_vals.Rd @@ -200,12 +200,13 @@ omitted. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -225,7 +226,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, \code{\link{sub_values}()}, diff --git a/man/sub_missing.Rd b/man/sub_missing.Rd index c4b0c3cb5c..e36e7609b1 100644 --- a/man/sub_missing.Rd +++ b/man/sub_missing.Rd @@ -137,12 +137,13 @@ calls of \code{sub_missing()}. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -162,7 +163,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_small_vals}()}, \code{\link{sub_values}()}, diff --git a/man/sub_small_vals.Rd b/man/sub_small_vals.Rd index 4d8ecee9f6..4f3a04a396 100644 --- a/man/sub_small_vals.Rd +++ b/man/sub_small_vals.Rd @@ -203,12 +203,13 @@ omitted. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -228,7 +229,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_values}()}, diff --git a/man/sub_values.Rd b/man/sub_values.Rd index 5a1b939dff..7995b9e0ab 100644 --- a/man/sub_values.Rd +++ b/man/sub_values.Rd @@ -220,12 +220,13 @@ that vector must match the length of \code{x}). \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -245,7 +246,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/sub_zero.Rd b/man/sub_zero.Rd index 1d3a13fbb5..8b8b2a6a74 100644 --- a/man/sub_zero.Rd +++ b/man/sub_zero.Rd @@ -142,12 +142,13 @@ single call of \code{sub_zero()}. \seealso{ Other data formatting functions: \code{\link{data_color}()}, +\code{\link{fmt}()}, \code{\link{fmt_auto}()}, \code{\link{fmt_bins}()}, \code{\link{fmt_bytes}()}, \code{\link{fmt_currency}()}, -\code{\link{fmt_datetime}()}, \code{\link{fmt_date}()}, +\code{\link{fmt_datetime}()}, \code{\link{fmt_duration}()}, \code{\link{fmt_engineering}()}, \code{\link{fmt_flag}()}, @@ -167,7 +168,6 @@ Other data formatting functions: \code{\link{fmt_time}()}, \code{\link{fmt_units}()}, \code{\link{fmt_url}()}, -\code{\link{fmt}()}, \code{\link{sub_large_vals}()}, \code{\link{sub_missing}()}, \code{\link{sub_small_vals}()}, diff --git a/man/system_fonts.Rd b/man/system_fonts.Rd index 46a404cbd7..e80b9745f3 100644 --- a/man/system_fonts.Rd +++ b/man/system_fonts.Rd @@ -254,10 +254,10 @@ Other helper functions: \code{\link{cells_grand_summary}()}, \code{\link{cells_row_groups}()}, \code{\link{cells_source_notes}()}, +\code{\link{cells_stub}()}, \code{\link{cells_stub_grand_summary}()}, \code{\link{cells_stub_summary}()}, \code{\link{cells_stubhead}()}, -\code{\link{cells_stub}()}, \code{\link{cells_summary}()}, \code{\link{cells_title}()}, \code{\link{currency}()}, diff --git a/man/tab_caption.Rd b/man/tab_caption.Rd index afc368c9dc..01dd1e5bbf 100644 --- a/man/tab_caption.Rd +++ b/man/tab_caption.Rd @@ -72,11 +72,11 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_footnote.Rd b/man/tab_footnote.Rd index 909acb2abf..7fd7491d7b 100644 --- a/man/tab_footnote.Rd +++ b/man/tab_footnote.Rd @@ -367,11 +367,11 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_header.Rd b/man/tab_header.Rd index 8f408d4c8a..a3141a7be5 100644 --- a/man/tab_header.Rd +++ b/man/tab_header.Rd @@ -138,11 +138,11 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_info.Rd b/man/tab_info.Rd index cee373adc0..cb9912b183 100644 --- a/man/tab_info.Rd +++ b/man/tab_info.Rd @@ -79,11 +79,11 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_options.Rd b/man/tab_options.Rd index 26ee4504d0..13ca4b6e99 100644 --- a/man/tab_options.Rd +++ b/man/tab_options.Rd @@ -780,11 +780,11 @@ Other part creation/modification functions: \code{\link{tab_info}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_row_group.Rd b/man/tab_row_group.Rd index a47a91b071..ed30812a4f 100644 --- a/man/tab_row_group.Rd +++ b/man/tab_row_group.Rd @@ -234,11 +234,11 @@ Other part creation/modification functions: \code{\link{tab_info}()}, \code{\link{tab_options}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_source_note.Rd b/man/tab_source_note.Rd index a08242c22a..5199145b79 100644 --- a/man/tab_source_note.Rd +++ b/man/tab_source_note.Rd @@ -70,11 +70,11 @@ Other part creation/modification functions: \code{\link{tab_info}()}, \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_spanner.Rd b/man/tab_spanner.Rd index d14dd915ff..629622407f 100644 --- a/man/tab_spanner.Rd +++ b/man/tab_spanner.Rd @@ -470,7 +470,7 @@ Other part creation/modification functions: \code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_spanner_delim.Rd b/man/tab_spanner_delim.Rd index 0eb28198a1..f902188dfe 100644 --- a/man/tab_spanner_delim.Rd +++ b/man/tab_spanner_delim.Rd @@ -313,7 +313,7 @@ Other part creation/modification functions: \code{\link{tab_spanner}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_stub_indent.Rd b/man/tab_stub_indent.Rd index b951ebae14..677c01aa21 100644 --- a/man/tab_stub_indent.Rd +++ b/man/tab_stub_indent.Rd @@ -123,10 +123,10 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stubhead}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_stubhead.Rd b/man/tab_stubhead.Rd index 5ec31dca71..4505baca3f 100644 --- a/man/tab_stubhead.Rd +++ b/man/tab_stubhead.Rd @@ -90,10 +90,10 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, -\code{\link{tab_style_body}()}, -\code{\link{tab_style}()} +\code{\link{tab_style}()}, +\code{\link{tab_style_body}()} } \concept{part creation/modification functions} diff --git a/man/tab_style.Rd b/man/tab_style.Rd index cf5cc30917..d7987e38f3 100644 --- a/man/tab_style.Rd +++ b/man/tab_style.Rd @@ -387,8 +387,8 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, \code{\link{tab_style_body}()} diff --git a/man/tab_style_body.Rd b/man/tab_style_body.Rd index 2b1fa4c4f7..68a9ed174f 100644 --- a/man/tab_style_body.Rd +++ b/man/tab_style_body.Rd @@ -333,8 +333,8 @@ Other part creation/modification functions: \code{\link{tab_options}()}, \code{\link{tab_row_group}()}, \code{\link{tab_source_note}()}, -\code{\link{tab_spanner_delim}()}, \code{\link{tab_spanner}()}, +\code{\link{tab_spanner_delim}()}, \code{\link{tab_stub_indent}()}, \code{\link{tab_stubhead}()}, \code{\link{tab_style}()} diff --git a/man/vec_fmt_bytes.Rd b/man/vec_fmt_bytes.Rd index 0610c86459..cc28be562e 100644 --- a/man/vec_fmt_bytes.Rd +++ b/man/vec_fmt_bytes.Rd @@ -241,8 +241,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_currency.Rd b/man/vec_fmt_currency.Rd index 8089025ee9..e266554951 100644 --- a/man/vec_fmt_currency.Rd +++ b/man/vec_fmt_currency.Rd @@ -322,8 +322,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_duration.Rd b/man/vec_fmt_duration.Rd index 6ce3bbac93..f4cf6ea88f 100644 --- a/man/vec_fmt_duration.Rd +++ b/man/vec_fmt_duration.Rd @@ -284,8 +284,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, \code{\link{vec_fmt_index}()}, diff --git a/man/vec_fmt_engineering.Rd b/man/vec_fmt_engineering.Rd index adcf7e24c1..f5fce76b08 100644 --- a/man/vec_fmt_engineering.Rd +++ b/man/vec_fmt_engineering.Rd @@ -227,8 +227,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_fraction}()}, \code{\link{vec_fmt_index}()}, diff --git a/man/vec_fmt_fraction.Rd b/man/vec_fmt_fraction.Rd index 14d4e04509..2808c85875 100644 --- a/man/vec_fmt_fraction.Rd +++ b/man/vec_fmt_fraction.Rd @@ -181,8 +181,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_index}()}, diff --git a/man/vec_fmt_index.Rd b/man/vec_fmt_index.Rd index 9c0e7e6650..b55bc61e7d 100644 --- a/man/vec_fmt_index.Rd +++ b/man/vec_fmt_index.Rd @@ -143,8 +143,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_integer.Rd b/man/vec_fmt_integer.Rd index 9cc468e26e..198c7f25f1 100644 --- a/man/vec_fmt_integer.Rd +++ b/man/vec_fmt_integer.Rd @@ -209,8 +209,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_markdown.Rd b/man/vec_fmt_markdown.Rd index 1b280c70cc..4271fdbda1 100644 --- a/man/vec_fmt_markdown.Rd +++ b/man/vec_fmt_markdown.Rd @@ -98,8 +98,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_number.Rd b/man/vec_fmt_number.Rd index d4cce71424..656eb6ee3d 100644 --- a/man/vec_fmt_number.Rd +++ b/man/vec_fmt_number.Rd @@ -282,8 +282,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_partsper.Rd b/man/vec_fmt_partsper.Rd index 504b02231c..e201f784a1 100644 --- a/man/vec_fmt_partsper.Rd +++ b/man/vec_fmt_partsper.Rd @@ -274,8 +274,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_percent.Rd b/man/vec_fmt_percent.Rd index ee967e0e0f..1af1f4fbc8 100644 --- a/man/vec_fmt_percent.Rd +++ b/man/vec_fmt_percent.Rd @@ -261,8 +261,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_roman.Rd b/man/vec_fmt_roman.Rd index 16e2ddf96d..f27ee437fc 100644 --- a/man/vec_fmt_roman.Rd +++ b/man/vec_fmt_roman.Rd @@ -109,8 +109,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_scientific.Rd b/man/vec_fmt_scientific.Rd index 76068546a2..143c04c546 100644 --- a/man/vec_fmt_scientific.Rd +++ b/man/vec_fmt_scientific.Rd @@ -241,8 +241,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_spelled_num.Rd b/man/vec_fmt_spelled_num.Rd index 65bdca86f7..7627c9ff4f 100644 --- a/man/vec_fmt_spelled_num.Rd +++ b/man/vec_fmt_spelled_num.Rd @@ -146,8 +146,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()}, diff --git a/man/vec_fmt_time.Rd b/man/vec_fmt_time.Rd index 2143e68333..b820372dcd 100644 --- a/man/vec_fmt_time.Rd +++ b/man/vec_fmt_time.Rd @@ -189,8 +189,8 @@ The variant function intended for formatting \strong{gt} table data: Other vector formatting functions: \code{\link{vec_fmt_bytes}()}, \code{\link{vec_fmt_currency}()}, -\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_date}()}, +\code{\link{vec_fmt_datetime}()}, \code{\link{vec_fmt_duration}()}, \code{\link{vec_fmt_engineering}()}, \code{\link{vec_fmt_fraction}()},