Convert gtsummary object to a gt object
Function converts a gtsummary object to a gt_tbl object. 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 the gt package.
Review the tbl_summary vignette or tbl_regression vignette for detailed examples in the 'Advanced Customization' section.
as_gt( x, include = everything(), return_calls = FALSE, ..., exclude = NULL, omit = 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 |
... |
Arguments passed on to gt::gt |
exclude |
DEPRECATED. |
omit |
DEPRECATED. |
A gt_tbl
object
Daniel D. Sjoberg
Other gtsummary output types:
as_flex_table()
,
as_hux_table()
,
as_kable_extra()
,
as_kable()
,
as_tibble.gtsummary()
as_gt_ex <- trial[c("trt", "age", "response", "grade")] %>% tbl_summary(by = trt) %>% as_gt()
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.