Combine two data frames by rows (rbind) when they have different sets of columns
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.
Solution
rbind.fill from the package plyr might be what you are looking for.