繁体   English   中英

如何在 R 中使用 `ggdraw` 和 `plot_grid()` 在 X 和 Y 轴上创建一个公共标题?

[英]How to create a common title in X and Y axis in an arrange of plots using `ggdraw` and `plot_grid()` in R?

我有一组图,我想为其创建一个常见的 X 轴标题和一个常见的 Y 轴标题。 举个例子:

library(ggplot2)
library(cowplot)
library(ggpubr)z
theme_set(theme_cowplot())

df <- data.frame(x = 1:12, y = (1:12)^2)
df$grp = c('Some', 'Things', 'In a legend')

p <- ggplot(df, aes(x, y, color=grp)) + geom_point()
leg <- get_legend(p)
leg <- as_ggplot(leg)
p = p + theme(legend.position = "none")

plot_grid(
  p, p, leg, 
  p, p, leg,
  ncol = 3, rel_widths=c(2,2,1)
)

在此处输入图像描述

经过一番阅读,我发现可以选择使用ggdraw 但是,我不知道它是如何工作的,也不知道如何得到我想要的(y 轴上的一个Y和 x 轴上的一个X )。 以下是我尝试过的:

  • 我做的和以前一样,但我也删除了每个 plot 的 X 和 Y 轴标题
df <- data.frame(x = 1:12, y = (1:12)^2)
df$grp = c('Some', 'Things', 'In a legend')

p <- ggplot(df, aes(x, y, color=grp)) + geom_point()
leg <- get_legend(p)
leg <- as_ggplot(leg)
p = p + theme(legend.position = "none",axis.title.x =element_blank(),axis.title.y =element_blank()) # I remove x and y titles for the plots

P <-plot_grid(
  p, p, leg, 
  p, p, leg,
  ncol = 3, rel_widths=c(2,2,1)
)
P
  • 然后,使用ggdraw ,我在我想要的 position 中创建了一系列带有一个 x 轴标题的图。 但是,我不知道如何为 y 轴获得相同的值。 我不知道如何增加 y 轴边距以添加 label。 以下是我到目前为止尝试的代码:
P1 <- ggdraw(add_sub(P , "X", vpadding=grid::unit(0.8,"lines"), # With `0.8` I add some space in the X margin.
y=2, x=1, vjust=1, # With `y` and `x` I can indicate the coordinates for my desired text
angle=0) # With this I can change the orientation of the text
)
P1 

在此处输入图像描述

有谁知道如何使用ggdraw或另一个 function 创建一个通用的 x 和 y 轴?

我认为您只需要在add_sub之前使用边距:

P <-plot_grid(
 p, p, leg, 
 p, p, leg,
 ncol = 3, rel_widths=c(2,2,1)
) + theme(plot.margin = margin(30, 30, -50, 50))

P <- add_sub(P, "x axis text", hjust = 1)
P <- add_sub(P, "y axis text", -0.05, 5, angle = 90)
ggdraw(P)

在此处输入图像描述

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM