as_tibble.gtsummary | R Documentation |
Function converts a gtsummary object to a tibble.
## S3 method for class 'gtsummary'
as_tibble(
x,
include = everything(),
col_labels = TRUE,
return_calls = FALSE,
fmt_missing = FALSE,
...
)
## S3 method for class 'gtsummary'
as.data.frame(...)
x |
( |
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 |
(scalar |
return_calls |
Logical. Default is |
fmt_missing |
(scalar |
... |
Arguments passed on to |
a tibble
Daniel D. Sjoberg
tbl <-
trial |>
tbl_summary(by = trt, include = c(age, grade, response))
as_tibble(tbl)
# without column labels
as_tibble(tbl, col_labels = FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.