Best practices for storing and using data frames too large for memory?

前端 未结 3 1708
执笔经年
执笔经年 2020-12-04 15:00

I\'m working with a large data frame, and have run up against RAM limits. At this point, I probably need to work with a serialized version on the disk. There are a few packa

3条回答
  •  日久生厌
    2020-12-04 15:40

    I would say the disk.frame is good candidate for these type of tasks. I am the primary author of the package.

    Unlike ff and bigmemory which restricts what data types can be easily handled, it tries to "mimic" data.frames and provide dplyr verbs for manipulating the data.

提交回复
热议问题