merge_dataframes | R Documentation |
Merges a list of dataframes by handling column collisions through specified strategies: "intersection" or "union".
merge_dataframes(
dataframes,
column_collision_strategy = "intersection",
fill_value = NA
)
dataframes |
A list of dataframes to merge. |
column_collision_strategy |
A string specifying how to handle column collisions. "intersection" keeps only columns present in all dataframes, "union" includes all columns from all dataframes, filling missing values. |
fill_value |
Value to fill in missing columns if |
Merged dataframe
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.