R – Combine two data frames by rows (rbind) when they have different sets of columns

dataframerr-faq

Is it possible to row bind two data frames that don't have the same set of columns? I am hoping to retain the columns that do not match after the bind.

Best Answer

rbind.fill from the package plyr might be what you are looking for.