variable in the file name for write.table in R

后端 未结 3 2003
深忆病人
深忆病人 2020-12-30 15:59

Please help me with naive question (already googled, and tried a lot of variations, but failed): How save files with the variable in the file name for write.table in R? Scri

3条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-30 16:06

    The sprintf function can also be used for this type of thing with a little different syntax:

    write.table(utms, file=sprintf("%s.mean",x))
    

提交回复
热议问题