powered by
ARD functions for relocating columns and rows to the standard order.
tidy_ard_column_order() relocates columns of the ARD to the standard order.
tidy_ard_column_order()
tidy_ard_row_order() orders rows of ARD according to groups and strata (group 1, then group2, etc), while retaining the column order of the input ARD.
tidy_ard_row_order()
tidy_ard_column_order(x, group_order = c("ascending", "descending"))tidy_ard_row_order(x)
tidy_ard_row_order(x)
an ARD data frame of class 'card'
(data.frame) an ARD data frame of class 'card'
data.frame
(string) specifies the ordering of the grouping variables. Must be one of c("ascending", "descending"). Default is "ascending", where grouping variables begin with "group1" variables, followed by "group2" variables, etc.
string
c("ascending", "descending")
"ascending"
"group1"
"group2"
# order columns ard <- dplyr::bind_rows( ard_summary(mtcars, variables = "mpg"), ard_summary(mtcars, variables = "mpg", by = "cyl") ) tidy_ard_column_order(ard) |> tidy_ard_row_order()
Run the code above in your browser using DataLab