如果我想将图表绘制为 pdf,它不起作用。我只得到一个空的pdf页面。这是一个小例子。
> pdf("try.pdf")
> plot(x=c(1,2,4,2,5))
> dev.off()
我还尝试了 print() 命令。但没有运气:
> print(plot(x=c(1,2,4,2,5)))
NULL # <- is this an error?
我的操作系统是 Ubuntu 12.10 64 位。我的 R 版本是 2.15.2。
其他输出格式正在工作(例如 jpeg()、png())。这是我第一次在 Ubuntu 中使用 pdf 输出(我之前在 Win 上工作过没有问题)。
欢迎任何帮助。