ggplot单独的传奇和情节

时间:2012-09-21 23:23:22

标签: r ggplot2 legend

我正在使用网格 lpackage来放置我用 ggplot2 制作的图表:

library(ggplot2)
library(grid)

Layout <- grid.layout(nrow = 4, ncol = 4,
          widths = unit(1, "null"), 
          heights = unit(c(0.4, 0.8, 1.2, 1.2), c("null", "null", "null")))
grid.show.layout(Layout)

plot1 = ggplot(diamonds, aes(clarity, fill = color)) + 
            geom_bar() + 
            facet_wrap(~cut, nrow = 1)
print(plot1 + theme(legend.position = "none"), 
vp = viewport(layout.pos.row = 3, layout.pos.col = 1:4))

问题在于我想将绘图放在第三行(3,1) - (3,4)并将图例放在(4,4)位置。不幸的是,我真的找不到创建图例变量的方法。 我在网上搜索,我得到的最接近的是使用旧的 + opts(keep = "legend_box")但已被弃用。

older solution

2 个答案:

答案 0 :(得分:27)

您可以从ggplot的grob对象中获取图例。然后,您可以使用grid.arrange函数来定位所有内容。

library(gridExtra)
g_legend<-function(a.gplot){
    tmp <- ggplot_gtable(ggplot_build(a.gplot))
    leg <- which(sapply(tmp$grobs, function(x) x$name) == "guide-box")
    legend <- tmp$grobs[[leg]]
    legend
}

legend <- g_legend(plot1)

grid.arrange(legend, plot1+ theme(legend.position = 'none'), 
    ncol=2, nrow=1, widths=c(1/6,5/6))

使用g_legend功能在网络上有很多示例。

HTH

答案 1 :(得分:4)

ggplot2自己的开发人员提出了一个函数 grid_arrange_shared_legend https://github.com/hadley/ggplot2/wiki/Share-a-legend-between-two-ggplot2-graphs,效果非常好。