| as_kable | R Documentation |
Output from knitr::kable() is less full featured compared to
summary tables produced with gt.
For example, kable summary tables do not include indentation, footnotes,
or spanning header rows.
Line breaks (\n) are removed from column headers and table cells.
as_kable(x, ..., include = everything(), return_calls = FALSE)
x |
( |
... |
Additional arguments passed to |
include |
Commands to include in output. Input may be a vector of
quoted or unquoted names. tidyselect and gtsummary select helper
functions are also accepted.
Default is |
return_calls |
Logical. Default is |
Tip: To better distinguish variable labels and level labels when
indenting is not supported, try bold_labels() or italicize_levels().
A knitr_kable object
Daniel D. Sjoberg
trial |>
tbl_summary(by = trt) |>
bold_labels() |>
as_kable()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.