Efficient alternatives to merge for larger data.frames R

前端 未结 3 1882
花落未央
花落未央 2020-12-02 11:27

I am looking for an efficient (both computer resource wise and learning/implementation wise) method to merge two larger (size>1 million / 300 KB RData file) data frames.

3条回答
  •  伪装坚强ぢ
    2020-12-02 12:08

    Do you have to do the merge in R? If not, merge the underlying data files using a simple file concatenation and then load them into R. (I realize this may not apply to your situation -- but if it does, it could save you a lot of headache.)

提交回复
热议问题