简体   繁体   中英

Merge several dataframes in R

If in this code I merge 2 data frames by ID,

full <- merge(data frameA,data frameB,by="ID")

How can I merge 4 data frames by the same ID avoiding using this code several times?

Thanks

Try this:

lst <- list(dfB, dfC, dfD)
result <- dfA
for (df in lst) result <- merge(result,df,by="ID")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM