Function converts a gtsummary object to a knitr_kable + kableExtra object. A user can use this function if they wish to add customized formatting available via knitr::kable and kableExtra. Bold and italic cells are not supported for kableExtra output via gtsummary.
as_kable_extra(
x,
include = everything(),
return_calls = FALSE,
strip_md_bold = TRUE,
...
)
Object created by a function from the gtsummary package (e.g. tbl_summary or tbl_regression)
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 everything()
.
Logical. Default is FALSE
. If TRUE
, the calls are returned
as a list of expressions.
When TRUE, all double asterisk (markdown language for bold weight) in column labels and spanning headers are removed.
Additional arguments passed to knitr::kable
A kableExtra object
Other gtsummary output types:
as_flex_table()
,
as_gt()
,
as_hux_table()
,
as_kable()
,
as_tibble.gtsummary()
# NOT RUN {
if (requireNamespace("kableExtra"))
tbl <-
trial %>%
tbl_summary(by = trt) %>%
as_kable_extra()
# }
Run the code above in your browser using DataLab