0

如何修复以下代码?

postscript("test.eps")
    dev.new(width=5,height=2)
    plot(1:10)
dev.off()

显然我想将这个小高度图导出到eps文件中。现在.eps将导出一个完全空白的内容。

4

1 回答 1

1

只需放弃无关的调用plot.new(),它应该可以正常工作:

postscript("test.eps", width = 5, height = 2)
    plot(1:10)
dev.off()
于 2012-11-05T14:40:50.090 回答