【问题标题】:How To Edit Common Legend Title In ggarrange?如何在 ggarrange 中编辑常见的图例标题?
【发布时间】:2020-03-28 11:30:19
【问题描述】:

如何使用ggarrange 编辑常见的图例标题(使其变为粗体并放大字体大小)?

根据我拥有的六个图(p1 到 p6),我认为以下方法可行:

p6 <-  p6 + theme(legend.title = element_text(size = 15, face = "bold")

下面的ggarrange是用来组合六张图的:

p <- ggarrange(p1, p2, p3, p4, p5, p6,
          common.legend = TRUE, 
          legend = "bottom", 
          labels = c("1", "2", "3", "4", "5", "6"),
          # font.label = list(size = 10, color = "green"),
          nrow = 2, ncol = 4
          )

但是,这根本不会改变常见的图例。

【问题讨论】:

  • 您能否提供至少一张您目前获得的图表的图像?最好的情况,你能提供一个reproducible example 你试图绘制的数据吗?

标签: r ggplot2 gridextra r-grid ggpubr


【解决方案1】:

您可以从您感兴趣的情节中提取图例,然后将该图例安排在您的情节旁边。

#libraries:

library(ggplot2)
library(ggpubr)
library(gridExtra)
library(grid)
#example plots:

p1 <- ggplot(mtcars) + 
        geom_point(aes(x=mpg, y=qsec, color = factor(cyl)))

p2 <- ggplot(mtcars) + 
        geom_point(aes(x=mpg, y=4*drat, color = factor(cyl))) + 
        theme(legend.title = element_text(size = 15, face = "bold"),
              legend.position="bottom")
#function to extract the legend of a ggplot; source:
#https://github.com/hadley/ggplot2/wiki/Share-a-legend-between-two-ggplot2-graphs

get_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]]
  return(legend)}
#arranging the legend and plots in a grid:

p2_legend <- get_legend(p2)

grid.arrange(arrangeGrob(p1 + theme(legend.position="none"), 
                         p2 + theme(legend.position="none"), nrow=2), 
             p2_legend, 
             nrow=2,heights=c(10, 1))

【讨论】:

    猜你喜欢
    • 2018-06-16
    • 1970-01-01
    • 2019-09-15
    • 2017-12-25
    • 1970-01-01
    • 1970-01-01
    • 2012-11-23
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多