According to Creating an R dataframe row-by-row, it's not ideal to append to a data.frame using rbind, as it creates a copy of the whole data.frame each time. How do I accumulate data in R resulting in a data.frame without incurring this penalty? The intermediate format doesn't need to be a data.frame.
|
|
||||
|
|
First approach I tried accessing each element of a pre-allocated data.frame:
But tracemem goes crazy (e.g. the data.frame is being copied to a new address each time). Alternative approach (doesn't work either) One approach (not sure it's faster as I haven't benchmarked yet) is to create a list of data.frames, then
Unfortunately in creating the list I think you will be hard-pressed to pre-allocate. For instance:
In other words, replacing an element of the list causes the list to be copied. I assume the whole list, but it's possible it's only that element of the list. I'm not intimately familiar with the details of R's memory management. Probably the best approach As with many speed or memory-limited processes these days, the best approach may well be to use
But as @MatthewDowle points out,
(Results shown below) Benchmarking With the loop run 10,000 times, data table is almost a full order of magnitude faster:
And comparison of
Note that |
|||||||||||||||||
|
|
I like If the data is small enough, one can use the ":memory:" file, if it is big, the hard disk. Of course, it can not compete in terms of speed:
But it might look better if the |
||||
|
|
|
You could also have an empty list object where elements are filled with dataframes; then collect the results at the end with sapply or similar. An example can be found here. This will not incur the penalties of growing an object. |
|||
|
|
