View source: R/modify_column_hide.R
modify_column_hide | R Documentation |
Use these functions to hide or unhide columns in a gtsummary table.
Use show_header_names(show_hidden=TRUE)
to print available columns to update.
modify_column_hide(x, columns)
modify_column_unhide(x, columns)
x |
( |
columns |
( |
Daniel D. Sjoberg
# Example 1 ----------------------------------
# hide 95% CI, and replace with standard error
lm(age ~ marker + grade, trial) |>
tbl_regression() |>
modify_column_hide(conf.low) |>
modify_column_unhide(columns = std.error)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.