我有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
但这不起作用。
答案 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()
此处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)
}