自动调整PDF输出中的R绘图大小

时间:2012-10-15 01:33:10

标签: r pdf plot

使用R中的pdf()函数在外部文件中保存绘图时,我们可以指定width和/或height来调整绘图的大小。但是,有些情况下我们会获得多个绘图(例如使用par(mfrow=c(2,4)))。在这种情况下,要确定PDF文件的最佳widthheight是多么困难,以便正确显示所有图。有没有办法让R自动“适应PDF文件中的图”?我搜索了pdf()中的论点并尝试了一些,但结果并不令人满意。非常感谢你!

1 个答案:

答案 0 :(得分:2)

使用ggplot怎么样?

require(ggplot2)

# Bogus data
x <- rnorm(10000)
y <- as.factor(round(rnorm(10000, mean=10, sd=2), 0))
df <- data.frame(vals=x, factors=y)

myplot <- ggplot(data=df, aes(x=vals)) +
  geom_density() +
  facet_wrap(~ factors)

ggsave(filename="~/foo.pdf", plot=myplot, width=8, height=10, units="in")

编辑:如果您需要在多个页面上打印,请参阅this question