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.
I am new to R but figure that there has to be a fairly quick way to do this.
Many thanks,
Brock
|
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. I am new to R but figure that there has to be a fairly quick way to do this. Many thanks, Brock
| |||
|
feedback
|
|
| |||
|
feedback
|
|
You can use smartbind() from the gtools package. Example:
| |||
|
feedback
|
|
No, it is not possible.
| |||
|
feedback
|
|
You could also just pull out the common column names.
| |||
|
feedback
|
|
If the columns in df1 is a subset of those in df2 (by column names):
| |||
|
feedback
|
|
Maybe I completely misread your question, but the "I am hoping to retain the columns that do not match after the bind" makes me think you are looking for a There is already a great question and answer on this topic here: http://stackoverflow.com/questions/1299871/how-to-join-data-frames-in-r-inner-outer-left-right | |||
|
feedback
|
|
I wrote a function to do this because I like my code to tell me if something is wrong. This function will explicitly tell you which column names don't match and if you have a type mismatch. Then it will do its best to combine the data.frames anyway. The limitation is that you can only combine two data.frames at a time.
| |||
feedback
|