Description Usage Arguments Example Output Examples
View source: R/modify_column_hide.R
experimental Use these functions to hide or unhide columns in a gtsummary tables.
1 2 3 | modify_column_hide(x, columns)
modify_column_unhide(x, columns)
|
x |
gtsummary object |
columns |
vector or selector of columns in |
Example 1
1 2 3 4 5 6 7 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.