我想将数据提交给需要高质量数据的期刊min dpi is 300
,所以我试图以高质量保存我的情节,但是我收到错误。
我的情节包含几个数字。 例如:
par(mfrow=c(2,4))
x=c(5,2,4,5,8,7)
x1=c(5,2,4,5,8,7)
x2=c(5,2,4,5,8,7)
x3=c(5,2,4,5,8,7)
plot(x)
plot(x1)
plot(x2)
bitmap("Plot118.tiff", height = 531, width = 1328, type="tifflzw", res=300)
Error in system(paste(gsexe, "-help"), intern = TRUE, invisible = TRUE) :
'gswin32c.exe' not found
请问如何解决这个问题或产生高质量的数字?
答案 0 :(得分:2)
最简单的方法:安装RStudio,创建你的情节,并使用导出 - >另存为PDF选项。在那里你可以指定pdf大小。
答案 1 :(得分:1)
为了能够运行bitmap
命令,您需要安装Ghostscript。安装完成后,您可能还需要设置GS_CMD
环境变量。另请参阅R-devel邮件列表中的this question。