tbl_custom_summary {gtsummary} | R Documentation |
Create a table of summary statistics using a custom summary function
Description
The tbl_custom_summary()
function calculates descriptive statistics for
continuous, categorical, and dichotomous variables.
This function is similar to tbl_summary()
but allows you to provide
a custom function in charge of computing the statistics (see Details).
Usage
tbl_custom_summary(
data,
by = NULL,
label = NULL,
stat_fns,
statistic,
digits = NULL,
type = NULL,
value = NULL,
missing = c("ifany", "no", "always"),
missing_text = "Unknown",
missing_stat = "{N_miss}",
include = everything(),
overall_row = FALSE,
overall_row_last = FALSE,
overall_row_label = "Overall"
)
Arguments
data |
( |
by |
( |
label |
( |
stat_fns |
( |
statistic |
( |
digits |
( |
type |
( |
value |
( |
missing , missing_text , missing_stat |
Arguments dictating how and if missing values are presented:
|
include |
( |
overall_row |
(scalar |
overall_row_last |
(scalar |
overall_row_label |
( |
Value
A tbl_custom_summary
object
Similarities with tbl_summary()
Please refer to the help file of tbl_summary()
regarding the use of select
helpers, and arguments include
, by
, type
, value
, digits
, missing
and
missing_text
.
stat_fns
argument
The stat_fns
argument specify the custom function(s) to be used for computing
the summary statistics. For example, stat_fns = everything() ~ foo
.
Each function may take the following arguments:
foo(data, full_data, variable, by, type, ...)
-
data=
is the input data frame passed totbl_custom_summary()
, subset according to the level ofby
orvariable
if any, excludingNA
values of the currentvariable
-
full_data=
is the full input data frame passed totbl_custom_summary()
-
variable=
is a string indicating the variable to perform the calculation on -
by=
is a string indicating the by variable fromtbl_custom_summary=
, if present -
type=
is a string indicating the type of variable (continuous, categorical, ...) -
stat_display=
a string indicating the statistic to display (for thestatistic
argument, for that variable)
The user-defined does not need to utilize each of these inputs. It's
encouraged the user-defined function accept ...
as each of the arguments
will be passed to the function, even if not all inputs are utilized by
the user's function, e.g. foo(data, ...)
(see examples).
The user-defined function should return a one row dplyr::tibble()
with
one column per summary statistics (see examples).
statistic argument
The statistic argument specifies the statistics presented in the table. The
input is a list of formulas that specify the statistics to report. For example,
statistic = list(age ~ "{mean} ({sd})")
.
A statistic name that appears between curly brackets
will be replaced with the numeric statistic (see glue::glue()
).
All the statistics indicated in the statistic argument should be returned
by the functions defined in the stat_fns
argument.
When the summary type is "continuous2"
, pass a vector of statistics. Each element
of the vector will result in a separate row in the summary table.
For both categorical and continuous variables, statistics on the number of missing and non-missing observations and their proportions are also available to display.
-
{N_obs}
total number of observations -
{N_miss}
number of missing observations -
{N_nonmiss}
number of non-missing observations -
{p_miss}
percentage of observations missing -
{p_nonmiss}
percentage of observations not missing
Note that for categorical variables, {N_obs}
, {N_miss}
and {N_nonmiss}
refer
to the total number, number missing and number non missing observations
in the denominator, not at each level of the categorical variable.
It is recommended to use modify_footnote()
to properly describe the
displayed statistics (see examples).
Caution
The returned table is compatible with all gtsummary
features applicable
to a tbl_summary
object, like add_overall()
, modify_footnote()
or
bold_labels()
.
However, some of them could be inappropriate in such case. In particular,
add_p()
do not take into account the type of displayed statistics and
always return the p-value of a comparison test of the current variable
according to the by
groups, which may be incorrect if the displayed
statistics refer to a third variable.
Author(s)
Joseph Larmarange
Examples
# Example 1 ----------------------------------
my_stats <- function(data, ...) {
marker_sum <- sum(data$marker, na.rm = TRUE)
mean_age <- mean(data$age, na.rm = TRUE)
dplyr::tibble(
marker_sum = marker_sum,
mean_age = mean_age
)
}
my_stats(trial)
trial |>
tbl_custom_summary(
include = c("stage", "grade"),
by = "trt",
stat_fns = everything() ~ my_stats,
statistic = everything() ~ "A: {mean_age} - S: {marker_sum}",
digits = everything() ~ c(1, 0),
overall_row = TRUE,
overall_row_label = "All stages & grades"
) |>
add_overall(last = TRUE) |>
modify_footnote(
all_stat_cols() ~ "A: mean age - S: sum of marker"
) |>
bold_labels()
# Example 2 ----------------------------------
# Use `data[[variable]]` to access the current variable
mean_ci <- function(data, variable, ...) {
test <- t.test(data[[variable]])
dplyr::tibble(
mean = test$estimate,
conf.low = test$conf.int[1],
conf.high = test$conf.int[2]
)
}
trial |>
tbl_custom_summary(
include = c("marker", "ttdeath"),
by = "trt",
stat_fns = ~ mean_ci,
statistic = ~ "{mean} [{conf.low}; {conf.high}]"
) |>
add_overall(last = TRUE) |>
modify_footnote(
all_stat_cols() ~ "mean [95% CI]"
)
# Example 3 ----------------------------------
# Use `full_data` to access the full datasets
# Returned statistic can also be a character
diff_to_great_mean <- function(data, full_data, ...) {
mean <- mean(data$marker, na.rm = TRUE)
great_mean <- mean(full_data$marker, na.rm = TRUE)
diff <- mean - great_mean
dplyr::tibble(
mean = mean,
great_mean = great_mean,
diff = diff,
level = ifelse(diff > 0, "high", "low")
)
}
trial |>
tbl_custom_summary(
include = c("grade", "stage"),
by = "trt",
stat_fns = ~ diff_to_great_mean,
statistic = ~ "{mean} ({level}, diff: {diff})",
overall_row = TRUE
) |>
bold_labels()