提问人:Antonio 提问时间:10/17/2023 最后编辑:Dave2eAntonio 更新时间:10/17/2023 访问量:61
如何在R中将当前日期添加到字符串中?
How to add the current date into a string in R?
问:
我知道 Sys.Date() 以 YYYY-MM-DD 格式返回当前日期。
我有一个脚本,它正在保存刚刚作的数据集:
write.xlsx(DTAX, "C:\\User\\Me\\Documents\\File Name.xlsx")
不过,我想在保存时将日期包含在该文件名中......
这是我目前所拥有的:
write.xlsx(DTAX, paste("C:\\User\\Me\\Documents\\File Name.xlsx", Sys.Date(), " .xlsx"))
返回: 作为文件的名称。File Name 2023-10-26
我想要的是以下内容:File Name 10.16.23
答: 暂无答案
上一个:如何根据另一个 df 的条件填充 pandas df?
下一个:操作表键
评论