问题
如何组合单独的图(ggplot2),具有不同的y轴和不同的绘图高度,但保持对齐?
DETAIL
将图表与grid.arrange
(方法1)组合在一起时,使用不同的y轴单位时,它们不会对齐。解决这个问题的一种方法是使用gtable
(method2),但我无法调整绘图的相对高度。
示例
require(ggplot2)
#Make two plots, with different y axis
x = c(1, 5)
y= c(.1, .4)
data1<-data.frame(x,y)
top<-
ggplot(data1, aes(x=x, y=y))+
geom_line()
x = c(1, 5)
y= c(100000, 400000)
data2<-data.frame(x,y)
bottom<-
ggplot(data2, aes(x=x, y=y))+
geom_line()
# Method 1 - Grid Extra
require(gridExtra)
grid.arrange(top, bottom, heights=c(.6,.3))
方法1导致此图,由于y轴标签的长度不同而未对齐:
#Method 2 - gtable
require(gtable)
#Extract Grobs
g1<-ggplotGrob(top)
g2<-ggplotGrob(bottom)
#Bind the tables
g<-gtable:::rbind_gtable(g1, g2, "first")
#Remove a row between the plots
g <- gtable_add_rows(g, unit(-1,"cm"), pos=nrow(g1))
#draw
grid.newpage()
grid.draw(g)
方法2导致对齐图,但我无法调整每个图的高度。
谢谢!
答案 0 :(得分:18)
在您的gtable g
中,您可以设置相对面板高度
require(gtable)
g1<-ggplotGrob(top)
g2<-ggplotGrob(bottom)
g<-gtable:::rbind_gtable(g1, g2, "first")
panels <- g$layout$t[grep("panel", g$layout$name)]
g$heights[panels] <- unit(c(1,2), "null")
grid.newpage()
grid.draw(g)