如何修复以下代码?
postscript("test.eps")
dev.new(width=5,height=2)
plot(1:10)
dev.off()
显然我想将这个小高度的图输出到eps
文件。现在,将导出一个完全空白的.eps
。
答案 0 :(得分:1)
只需将无关的调用放到plot.new()
,它应该可以正常工作:
postscript("test.eps", width = 5, height = 2)
plot(1:10)
dev.off()