每页打印奇数个多个图

时间:2015-11-05 22:03:49

标签: r plot

我知道以下内容可用于每页打印6个图:

par(mfrow = c(3, 2)) # 3 rows and 2 columns

但是,我每页只需要5个图。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:1)

使用layout仅绘制五个图表。 matrix部分显示了绘制哪个图表的位置。 0表示“不在此部分绘制图表”。

layout(matrix(c(1,2,3,4,5,0), 3, 2, byrow = TRUE))
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)
plot(1:10)

enter image description here