How to save a data.frame in R?

后端 未结 3 2117
执笔经年
执笔经年 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:05

    Let us say you have a data frame you created and named "Data_output", you can simply export it to same directory by using the following syntax.

    write.csv(Data_output, "output.csv", row.names = F, quote = F)

    credit to Peter and Ilja, UMCG, the Netherlands

提交回复
热议问题