How to save data file into .RData?

前端 未结 3 1214
礼貌的吻别
礼貌的吻别 2020-12-02 07:35

I want to save data into an .RData file.

For instance, I\'d like to save into 1.RData with two csv files and some information.

Here

3条回答
  •  渐次进展
    2020-12-02 07:43

    Just to add an additional function should you need it. You can include a variable in the named location, for example a date identifier

    date <- yyyymmdd
    save(city, file=paste0("c:\\myuser\\somelocation\\",date,"_RData.Data")
    

    This was you can always keep a check of when it was run

提交回复
热议问题