Convert gtsummary object to a tibble
Function converts a gtsummary object to a tibble.
## S3 method for class 'gtsummary' as_tibble( x, include = everything(), col_labels = TRUE, 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 |
col_labels |
Logical argument adding column labels to output tibble.
Default is |
return_calls |
Logical. Default is |
exclude |
DEPRECATED |
... |
Not used |
a tibble
Daniel D. Sjoberg
Other gtsummary output types:
as_flex_table()
,
as_gt()
,
as_hux_table()
,
as_kable_extra()
,
as_kable()
tbl <- trial %>% select(trt, age, grade, response) %>% tbl_summary(by = trt) as_tibble(tbl) # without column labels as_tibble(tbl, col_labels = FALSE)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.