创建一些图表,并希望创建日期/时间在文件名中。我发现这个问题的答案对该主题非常有帮助,并且
paste("plotname",Sys.time(),".wmf",sep='')
事实上吐出来
[1] "plotname2013-07-02 11:55:04.wmf"
但
win.metafile(paste("plotname",Sys.time(),".wmf",sep=''))
# win.metafile("test.wmf")
ggplot(data.file, aes(x = group, y = delta)) + geom_boxplot()
dev.off()
给
Error in win.metafile(paste("plotname", Sys.time(), ".wmf", sep = "")) : unable to start win.metafile:plotname2013-07-02 11:56:23.wmf() device
它与更简单的 win.metafile("test.wmf") 命令一起使用。这里有什么问题?