并排绘制gList

时间:2013-03-20 11:01:31

标签: r plot r-grid

我有2个gList对象(网格)在我做

时绘制得很好
grid.draw(plot1)
grid.draw(plot2)

但我希望这些在pdf中并排。像

这样的东西
pdf(test.pdf)
par(mfrow=c(1,2))
plot(1:10)
plot(10:1)
dev.off

但这不起作用。

1 个答案:

答案 0 :(得分:3)

要安排grid个对象,您可以在视口中使用grid.layout。这是一个例子。

pushViewport(plotViewport(layout=grid.layout(1, 2),gp=gpar(cex=2)))
pushViewport(plotViewport(layout.pos.col=1))
  grid.draw(getPlot())
popViewport()
pushViewport(plotViewport(layout.pos.col=2, clip="on"))
  grid.draw(getPlot(col.fill='black',col.text='red',text='Rouge',x=0))
popViewport()
popViewport()

enter image description here

此处getPlot是一个重新调整gList;

的函数
getPlot <- function(col.fill="red",col.text='black',text="Noir",x=1){
  rect1 <- rectGrob(gp=gpar(fill=col.fill))
  text1 <- textGrob(text,gp=gpar(col=col.text))
  text2 <- textGrob("&", x=x,gp=gpar(col=col.text))
  gList(rect1,text1,text2)
}