Skip to contents

print_from_chunk() is a Print function that prints output to console. Specifically, this function implements an algorithm to print from chunk. The function is called for its side effects and does not return a value.

Usage

print_from_chunk(
  ds_tb,
  caption_1L_chr = NULL,
  mkdn_tbl_ref_1L_chr = NULL,
  output_type_1L_chr = "HTML",
  use_lbls_as_col_nms_1L_lgl = T,
  var_desc_chr = NA_character_,
  ...
)

Arguments

ds_tb

Dataset (a tibble)

caption_1L_chr

Caption (a character vector of length one), Default: NULL

mkdn_tbl_ref_1L_chr

Markdown table reference (a character vector of length one), Default: NULL

output_type_1L_chr

Output type (a character vector of length one), Default: 'HTML'

use_lbls_as_col_nms_1L_lgl

Use labels as column names (a logical vector of length one), Default: T

var_desc_chr

Variable description (a character vector), Default: 'NA'

...

Additional arguments

Value

No return value, called for side effects.