merge_data_with_auto_matched_column | R Documentation |
Check matched columns between two data frames and try to merge them.
merge_data_with_auto_matched_column(df1, df2, ...)
df1 |
Dataframe 1 |
df2 |
Dataframe 2 |
... |
Extra parameters given to |
merged dataframe
vec1 <- data.frame(col1=c('a','a','b','d'), a=c(1,2,3,6))
vec2 <- data.frame(col2=c('d','d','a','b'), b=c(1,2,4,5),a=c(1,2,3,4))
merge_data_with_auto_matched_column(vec1, vec2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.