merge_df_list | R Documentation |
This helper function combines all data frames in a single-level list into a single data frame.
merge_df_list(df_list, join = "inner", uid = "uid", no_na = FALSE)
df_list |
list of data frames. |
join |
String indicating if join should be "inner" or "full". |
uid |
Column name to join on. Default is "uid". |
no_na |
Whether to remove NA values from the merged data frame. |
Inner join of all data frames in list.
merge_df_list(list(income, pubertal), uid = "unique_id")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.