How to save() with a particular variable name

后端 未结 5 769
花落未央
花落未央 2020-12-01 03:02

I am repeatedly applying a function to read and process a bunch of csv files. Each time it runs, the function creates a data frame (this.csv.data) and uses save

5条回答
  •  栀梦
    栀梦 (楼主)
    2020-12-01 03:42

    Just name the arguments you use. With your code the following works fine:

    save(list = this.csv.data$unique_tag, file=saved_file_name)
    

提交回复
热议问题