Windows 10照片(查看器)无法从R脚本使用ggplot读取.jpg文件

时间:2018-07-15 13:57:49

标签: r ggplot2 jpeg

我使用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

0 个答案:

没有答案