我使用jpeg驱动程序将绘图导出到目录中。创建了图像文件,但显示了错误消息:
filename.jpg
It appears that we don't support this file format.
当我尝试使用pdf选项时,文件已创建,但另一条错误消息显示:
The file is already open or in use by another program.
有人可以告诉我我要去哪里错吗?
我的代码:
my_path<-"path/my.jpg"
jpeg(file=my_path)
ggplot(data_frame) +
geom_point(aes(x, y))+
ggtitle("some name")
dev.off