[Maturing] Use these functions to hide or unhide columns in a gtsummary table.

modify_column_hide(x, columns)

modify_column_unhide(x, columns)

Arguments

x

gtsummary object

columns

vector or selector of columns in x$table_body

Example Output

Example 1

image of rendered example table

Examples

# \donttest{
# Example 1 ----------------------------------
# hide 95% CI, and replace with standard error
modify_column_hide_ex1 <-
  lm(age ~ marker + grade, trial) %>%
  tbl_regression() %>%
  modify_column_hide(columns = ci) %>%
  modify_column_unhide(columns = std.error)
# }