View source: R/remove_row_type.R
remove_row_type | R Documentation |
Removes either the header, reference, or missing rows from a gtsummary table.
remove_row_type( x, variables = everything(), type = c("header", "reference", "missing", "level", "all"), level_value = NULL )
x |
gtsummary object |
variables |
variables to to remove rows from. Default is |
type |
type of row to remove. Must be one of |
level_value |
When |
Example 1
Review list, formula, and selector syntax used throughout gtsummary
# Example 1 ---------------------------------- library(dplyr, warn.conflicts = FALSE, quietly = TRUE) remove_row_type_ex1 <- trial %>% select(trt, age) %>% mutate( age60 = case_when(age < 60 ~ "<60", age >= 60 ~ "60+") ) %>% tbl_summary(by = trt, missing = "no") %>% remove_row_type(age60, type = "header")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.