prune_table {rtables} | R Documentation |
Recursively prune a TableTree
Description
Recursively prune a TableTree
Usage
prune_table(
tt,
prune_func = prune_empty_level,
stop_depth = NA_real_,
depth = 0
)
Arguments
tt |
( |
prune_func |
( |
stop_depth |
( |
depth |
( |
Value
A TableTree
pruned via recursive application of prune_func
.
See Also
prune_empty_level()
for details on this and several other basic pruning functions included
in the rtables
package.
Examples
adsl <- ex_adsl
levels(adsl$SEX) <- c(levels(ex_adsl$SEX), "OTHER")
tbl_to_prune <- basic_table() %>%
split_cols_by("ARM") %>%
split_rows_by("SEX") %>%
summarize_row_groups() %>%
split_rows_by("STRATA1") %>%
summarize_row_groups() %>%
analyze("AGE") %>%
build_table(adsl)
tbl_to_prune %>% prune_table()
[Package rtables version 0.6.9 Index]