How to save a data.frame in R?

后端 未结 3 2108
执笔经年
执笔经年 2020-11-28 19:05

I made a data.frame in R that is not very big, but it takes quite some time to build. I would to save it as a file, which I can than again open in R?

3条回答
  •  隐瞒了意图╮
    2020-11-28 20:01

    If you are only saving a single object (your data frame), you could also use saveRDS.
    To save:

    saveRDS(foo, file="data.Rda")
    

    Then read it with:

    bar <- readRDS(file="data.Rda")
    

    The difference between saveRDS and save is that in the former only one object can be saved and the name of the object is not forced to be the same after you load it.

提交回复
热议问题