You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
demog_ard <- adsl %>%
tardis_table(treat_var = TRT01A, where = SAFFL == "Y") %>%
add_total_group(group_name = "Total")
# Now let's add some variables we want. First we are going to start with AGE
demog_ard %>%
add_layer(
group_count(target_var = AGEGR1, by = "Age (years)")
)
# To see how this looks we are going to use the build function to build the ARD
demog_ard %>%
build()
But this doesn't
demog_ard <- adsl %>%
tardis_table(treat_var = TRT01A, where = SAFFL == "Y")
# Now let's add some variables we want. First we are going to start with AGE
demog_ard %>%
add_layer(
group_count(target_var = AGEGR1, by = "Age (years)")
)
# To see how this looks we are going to use the build function to build the ARD
demog_ard %>%
add_total_group(group_name = "Total") %>%
build()
I will note that if you make desc layers it works fine either way
The text was updated successfully, but these errors were encountered:
This works for making totals columns
But this doesn't
I will note that if you make desc layers it works fine either way
The text was updated successfully, but these errors were encountered: