I have 2 dataframes with a common ID. I want to merge all the columns from data frame B into data frame A, however data frame A has less rows.
merged <- merge (A, B, by = c("ID")
and I always get double rows how can I solve this? Thanks
I have 2 dataframes with a common ID. I want to merge all the columns from data frame B into data frame A, however data frame A has less rows.
merged <- merge (A, B, by = c("ID")
and I always get double rows how can I solve this? Thanks