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

dataframe, r, r-faq

Solution

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

Problem

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.

Original source

Related problems