使用gridExtra(ggplot)的好奇行为

时间:2016-11-30 00:58:48

标签: r ggplot2 gridextra

我正在尝试使用gridExtra包将三个图堆叠在一起。我尝试了第一个使用here中的grid.arrange的示例,该示例非常正常。

但是,当我尝试使用自己的绘图时,我会为每个绘图获取轴但没有数据,所有格式都被删除了。最低工作示例:

library(ggplot2)
library(gridExtra)    

popu_H0 <- seq(10, 30, length=100)
popu_H0_norm <- dnorm(popu_H0, mean = 20, sd = 4)

popu_H0_df <- as.data.frame(cbind(popu_H0, popu_H0_norm))
plot_H0 <- ggplot(popu_H0_df, aes(x=popu_H0, y=popu_H0_norm))
plot_H0 + 
  geom_line() +
  theme(
    text = element_text(size=20), 
    axis.title.x = element_text(vjust=0.1),
    axis.text.x = element_text(size = rel(1.8)),
    legend.position = "none",
    axis.title.y = element_blank(),
    axis.text.y = element_blank(),
    axis.ticks.y = element_blank(),
    axis.line.y = element_blank()
  ) +
  xlab("New label") +
  annotate("text", x = 20, y = 0.05, label = "Some annotation", size = 10) 

grid.arrange(plot_H0, plot_H0, plot_H0, ncol = 1, nrow = 3)

ggplot会产生预期的输出,但grid.arrange会产生this

1 个答案:

答案 0 :(得分:1)

您忘记更换绘图对象。

library(ggplot2)
library(gridExtra)
popu_H0 <- seq(10, 30, length=100)
popu_H0_norm <- dnorm(popu_H0, mean = 20, sd = 4)

popu_H0_df <- as.data.frame(cbind(popu_H0, popu_H0_norm))
plot_H0 <- ggplot(popu_H0_df, aes(x=popu_H0, y=popu_H0_norm))
plot_H0 <- plot_H0 +   # Here you need `<-` to update the plot 
  geom_line() +
  theme(
    text = element_text(size=20), 
    axis.title.x = element_text(vjust=0.1),
    axis.text.x = element_text(size = rel(1.8)),
    legend.position = "none",
    axis.title.y = element_blank(),
    axis.text.y = element_blank(),
    axis.ticks.y = element_blank(),
    axis.line.y = element_blank()
  ) +
  xlab("New label") +
  annotate("text", x = 20, y = 0.05, label = "Some annotation", size = 10) 

grid.arrange(plot_H0, plot_H0, plot_H0, ncol = 1, nrow = 3)