merge_df_list {metasnf} | R Documentation |
Merge list of data frames into a single data frame
Description
This helper function combines all data frames in a single-level list into a single data frame.
Usage
merge_df_list(df_list, join = "inner", uid = "uid", no_na = FALSE)
Arguments
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. |
Value
Inner join of all data frames in list.
Examples
merge_df_list(list(income, pubertal), uid = "unique_id")
[Package metasnf version 2.1.2 Index]