modify_column_merge {gtsummary} | R Documentation |
Modify Column Merging
Description
Merge two or more columns in a gtsummary table.
Use show_header_names()
to print underlying column names.
Usage
modify_column_merge(x, pattern, rows = NULL)
Arguments
x |
( |
pattern |
glue syntax string indicating how to merge columns in
|
rows |
(predicate |
Value
gtsummary table
Details
Calling this function merely records the instructions to merge columns. The actual merging occurs when the gtsummary table is printed or converted with a function like
as_gt()
.Because the column merging is delayed, it is recommended to perform major modifications to the table, such as those with
tbl_merge()
andtbl_stack()
, before assigning merging instructions. Otherwise, unexpected formatting may occur in the final table.If this functionality is used in conjunction with
tbl_stack()
(which includestbl_uvregression()
), there may be potential issues with printing. When columns are stack AND when the column-merging is defined with a quosure, you may run into issues due to the loss of the environment when 2 or more quosures are combined. If the expression version of the quosure is the same as the quosure (i.e. no evaluated objects), there should be no issues.
This function is used internally with care, and it is not recommended for users.
Future Updates
There are planned updates to the implementation of this function
with respect to the pattern=
argument.
Currently, this function replaces a numeric column with a
formatted character column following pattern=
.
Once gt::cols_merge()
gains the rows=
argument the
implementation will be updated to use it, which will keep
numeric columns numeric. For the vast majority of users,
the planned change will be go unnoticed.
See Also
Other Advanced modifiers:
modify_column_indent()
,
modify_table_styling()
Examples
# Example 1 ----------------------------------
trial |>
tbl_summary(by = trt, missing = "no", include = c(age, marker, trt)) |>
add_p(all_continuous() ~ "t.test", pvalue_fun = label_style_pvalue(prepend_p = TRUE)) |>
modify_fmt_fun(statistic ~ label_style_sigfig()) |>
modify_column_merge(pattern = "t = {statistic}; {p.value}") |>
modify_header(statistic = "**t-test**")
# Example 2 ----------------------------------
lm(marker ~ age + grade, trial) |>
tbl_regression() |>
modify_column_merge(
pattern = "{estimate} ({conf.low}, {conf.high})",
rows = !is.na(estimate)
)