我有两组时间序列数据,我想以堆叠的方式绘制。到目前为止,我已经能够提出这样的事情:
library(ggplot2);
library(gridExtra);
t=1:100; s=sin(t/10); c=cos(t/10);
g1=ggplot()+theme_bw()+geom_line(aes(x=t,y=s))+ylab(NULL)
g2=ggplot()+theme_bw()+geom_line(aes(x=t,y=c))+ylab("Cosine")+xlab("Time")
# get rid of the top plot's axis labels
g1=g1+theme(
axis.text.x=element_blank(),
panel.margin = unit(0,"null")
);
g1=g1+labs(x=NULL);
# zero bottom margin of top plot
g1$theme$plot.margin[3]=unit(0,"null");
# zero top margin of bottom plot
g2$theme$plot.margin[1]=unit(0,"null");
# this trick equalizes the width of the two plot panels
g1g=ggplotGrob(g1);
g2g=ggplotGrob(g2);
g1g$widths=g2g$widths
# however, equalizing the heights of the panels is not so simple as
# the following:
# g1g$heights=g2g$heights
g=arrangeGrob(g1g,g2g)
plot(g) #ggsave("out.svg",g,width=5,height=1.5);
组合图如下所示。我做得特别宽
简短以便您可以看到问题:arrangeGrob
均衡了问题
情节高度,但这样做使情节面板有所不同
高度。底部面板被 x 轴标签压缩并打勾
底部情节上的标签,顶部情节缺乏。
http://ofb.net/~frederik/stack1/out.svg
现在,我可以回收用来均衡宽度的技巧。取消注释行
g1g$heights=g2g$heights
产生以下结果:
http://ofb.net/~frederik/stack1/height-attempt.svg
这不是我想要的,因为现在出现在地块之间的过多的垂直空间 - 我希望它们能够触摸。
我知道我可以将heights
参数传递给arrangeGrob,以指定图的相对高度:
g=arrangeGrob(g1g,g2g,heights=c(1,2))
但是我必须弄清楚数字,直到它看起来正确。
我想知道是否有一种简单的方法可以在渲染最终grob时自动强制两个面板具有相同的高度。
答案 0 :(得分:6)
改为使用rbind,
grid.draw(rbind(ggplotGrob(g1), ggplotGrob(g2)))
如果你想摆脱介于两者之间的空间,那么从gtable中删除这些行比删除绘图边距更容易(你手动更改主题设置会产生错误,所以我忽略了这些行)
grid.newpage()
grid.draw(rbind(ggplotGrob(g1)[-(4:6),], ggplotGrob(g2)[-(1:2),]))
更改面板高度必须在单独的步骤中完成,例如使用这个小助手功能
g12 <- rbind(ggplotGrob(g1)[-(4:6),], ggplotGrob(g2)[-(1:2),])
resize_heights <- function(g, heights = rep(1, length(idpanels))){
idpanels <- unique(g$layout[grepl("panel",g$layout$name), "t"])
g$heights <- grid:::unit.list(g$heights)
g$heights[idpanels] <- unit.c(do.call(unit, list(heights, 'null')))
g
}
grid.newpage()
grid.draw(resize_heights(g12, c(3,1)))