Last chance! 50% off unlimited learning
Sale ends in
maturing Use these functions to hide or unhide columns in a gtsummary table.
modify_column_hide(x, columns)modify_column_unhide(x, columns)
gtsummary object
vector or selector of columns in x$table_body
Example 1
Review list, formula, and selector syntax used throughout gtsummary
Other Advanced modifiers:
modify_column_alignment()
,
modify_column_indent()
,
modify_column_merge()
,
modify_fmt_fun()
,
modify_table_body()
,
modify_table_styling()
# NOT RUN {
# 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)
# }
Run the code above in your browser using DataLab