gpt4 book ai didi

r - 使用arrangeGrob均衡堆叠图中的ggplot2面板高度

转载 作者:行者123 更新时间:2023-12-01 09:52:15 33 4
gpt4 key购买 nike

我有两组时间序列数据,我想以堆叠排列方式绘制它们。到目前为止,我已经能够想出这样的事情:

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 轴标签压扁并打勾
底部图上的标签,而顶部图缺少这些标签。

combined plot

现在,我可以重复使用我用来均衡宽度的技巧。取消注释行
g1g$heights=g2g$heights

产生以下结果:

fix height attempt plot

这不是我想要的,因为现在在地块之间出现过多的垂直空间——我希望它们相互接触。

我知道我可以通过 heights参数arrangeGrob,指定图的相对高度:
g=arrangeGrob(g1g,g2g,heights=c(1,2))

但后来我必须摆弄数字,直到它看起来正确。

我想知道是否有一种简单的方法可以在渲染最终 grob 时自动强制两个面板具有相同的高度。

最佳答案

改用 rbind,

grid.draw(rbind(ggplotGrob(g1), ggplotGrob(g2)))

enter image description here

如果你想摆脱中间的空间,从 gtable 中删除这些行比弄乱情节边缘更容易(你对主题设置的手动更改产生了错误,所以我忽略了这些行)。
grid.newpage()
grid.draw(rbind(ggplotGrob(g1)[-(4:6),], ggplotGrob(g2)[-(1:2),]))

enter image description here

更改面板高度必须在单独的步骤中完成,例如使用这个小助手功能
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)))

enter image description here

关于r - 使用arrangeGrob均衡堆叠图中的ggplot2面板高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35911121/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com