View source: R/sort_hierarchical.R
sort_hierarchical | R Documentation |
This function is used to sort hierarchical tables. Options for sorting criteria are:
Descending - within each section of the hierarchy table, event rate sums are calculated for each row and rows are sorted in descending order by sum (default).
Alphanumeric - rows are ordered alphanumerically (i.e. A to Z) by label text. By default, tbl_hierarchical()
sorts tables in alphanumeric order.
sort_hierarchical(x, ...)
## S3 method for class 'tbl_hierarchical'
sort_hierarchical(x, sort = c("descending", "alphanumeric"), ...)
## S3 method for class 'tbl_hierarchical_count'
sort_hierarchical(x, sort = c("descending", "alphanumeric"), ...)
x |
( |
... |
These dots are for future extensions and must be empty. |
sort |
(
Defaults to |
A gtsummary
of the same class as x
.
filter_hierarchical()
theme_gtsummary_compact()
ADAE_subset <- cards::ADAE |>
dplyr::filter(AEBODSYS %in% c("SKIN AND SUBCUTANEOUS TISSUE DISORDERS",
"EAR AND LABYRINTH DISORDERS")) |>
dplyr::filter(.by = AEBODSYS, dplyr::row_number() < 20)
tbl <-
tbl_hierarchical(
data = ADAE_subset,
variables = c(AEBODSYS, AEDECOD),
by = TRTA,
denominator = cards::ADSL |> mutate(TRTA = ARM),
id = USUBJID,
overall_row = TRUE
) |>
add_overall()
# Example 1 - Descending Frequency Sort ------------------
sort_hierarchical(tbl)
# Example 2 - Alphanumeric Sort --------------------------
sort_hierarchical(tbl, sort = "alphanumeric")
reset_gtsummary_theme()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.