Skip to content
Prev 318387 / 398506 Next

merging or joining 2 dataframes: merge, rbind.fill, etc.?

On Feb 26, 2013, at 9:33 PM, Anika Masters <anika.masters at gmail.com> wrote:

            
Consider plyr. Memory issues can be a problem, but it's a piece of
cake to write a one liner that iterates over a list of data frames and
returns them all rbind'd together.  Or just: do.call(rbind,
list.of.data.frames).

If memory is a serious problem then I think it's best to write your
own code that appends each row by index - which avoids copying entire
data frames in memory.