| bind_ard {cards} | R Documentation | 
Bind ARDs
Description
Wrapper for dplyr::bind_rows() with additional checks
for duplicated statistics.
Usage
bind_ard(..., .update = FALSE, .order = FALSE)
Arguments
| ... | (dynamic-dots)ARDs to combine. Each argument can either be an ARD,
or a list of ARDs. Columns are matched by name, and any missing
columns will be filled with
 NA. | 
| .update | (logical)logical indicating whether to update duplicate ARD statistics.
Default is
 FALSE. If a statistic type is repeated and.update=TRUE,
the more recently added statistics will be retained, and the others omitted. | 
| .order | (logical)logical indicating whether to order the rows of the stacked ARDs, allowing
statistics that share common group and variable values to appear in
consecutive rows. Default is
 FALSE. Ordering will be based on the order
of the group/variable values prior to stacking. | 
Value
an ARD data frame of class 'card'
Examples
ard <- ard_categorical(ADSL, by = "ARM", variables = "AGEGR1")
bind_ard(ard, ard, .update = TRUE)
[Package 
cards version 0.2.0 
Index]