Description Usage Arguments Value Examples
Merge data into a single data structure from a list of data.frames/tables
1 | multi_merge(data_list, ...)
|
data_list |
List of separate data.frames/tables to merge |
... |
Additional arguments passed to |
A data.frame/data.table, depending on the input data in the list
1 2 3 4 5 6 7 8 | ## Not run:
d1 <- fake_datavyu_data()$parenthands
d2 <- as.data.frame(fake_datavyu_data()$childhands)
d3 <- fake_datavyu_data(n2=50)$parenthands
data_list <- list(d1, d2, d3)
merged_data <- multi_merge(data_list, all=TRUE)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.