as_tibble.gtsummary {gtsummary} | R Documentation |
Convert gtsummary object to a tibble
Description
Function converts a gtsummary object to a tibble.
Usage
## 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(...)
Arguments
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 |
Value
a tibble
Author(s)
Daniel D. Sjoberg
Examples
tbl <-
trial |>
tbl_summary(by = trt, include = c(age, grade, response))
as_tibble(tbl)
# without column labels
as_tibble(tbl, col_labels = FALSE)
[Package gtsummary version 2.0.0 Index]