rm_all_colcounts | R Documentation |
Set all column counts at all levels of nesting to NA
rm_all_colcounts(obj)
## S4 method for signature 'VTableTree'
rm_all_colcounts(obj)
## S4 method for signature 'InstantiatedColumnInfo'
rm_all_colcounts(obj)
## S4 method for signature 'LayoutColTree'
rm_all_colcounts(obj)
## S4 method for signature 'LayoutColLeaf'
rm_all_colcounts(obj)
obj |
( |
obj
with all column counts reset to missing
lyt <- basic_table() %>%
split_cols_by("ARM") %>%
split_cols_by("SEX") %>%
analyze("AGE")
tbl <- build_table(lyt, ex_adsl)
# before
col_counts(tbl)
tbl <- rm_all_colcounts(tbl)
col_counts(tbl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.