Convert gtsummary object to a kable object
Function converts a gtsummary object to a knitr_kable object. This function is used in the background when the results are printed or knit. A user can use this function if they wish to add customized formatting available via knitr::kable.
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.
as_kable(x, include = everything(), return_calls = FALSE, exclude = NULL, ...)
x |
Object created by a function from the gtsummary package (e.g. tbl_summary or tbl_regression) |
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 |
exclude |
DEPRECATED |
... |
Additional arguments passed to knitr::kable |
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
Other gtsummary output types:
as_flex_table()
,
as_gt()
,
as_hux_table()
,
as_kable_extra()
,
as_tibble.gtsummary()
trial %>% tbl_summary(by = trt) %>% bold_labels() %>% as_kable()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.