R pdf设定保证金

时间:2016-11-15 06:04:24

标签: r pdf plot margin

我正在尝试设置用R生成的pdf的数字边距。 使用mar,我可以减少绘图边距。然而,结果图仍然是页面中间的正方形,而不是使用所有空间。我怎么能改变它?

pdf(file = "test.pdf", paper="a4r")
par(mar=c(0,0,0,0)+0.1)
plot(1:10,1:10)
dev.off()

谢谢!

enter image description here

1 个答案:

答案 0 :(得分:1)

在pdf()中,更改宽度和高度参数(https://stat.ethz.ch/R-manual/R-devel/library/grDevices/html/pdf.html)。默认值为7和7,这可能是页面上有额外空间的原因。