2

我正在创建一个listggplot图,它们具有相同的行数但不同的列数和不同长度的 x 轴刻度标签:

plot.list <- vector(mode="list",length(3))
n.cols <- c(600,30,300)
x.labs <- c("medium","this is a long label","sh")
library(ggplot2)

for(i in 1:3){
  set.seed(1)
  df <- reshape2::melt(matrix(rnorm(100*n.cols[i]),100,n.cols[i],dimnames = list(paste0("G",1:100),paste0("S",1:n.cols[i]))))
  plot.list[[i]] <- ggplot(data=df,mapping=aes(x=Var2,y=Var1,fill=value))+
    geom_tile()+theme_minimal()+scale_fill_gradient2(name="Scaled Value",low="darkblue",mid="gray",high="darkred")+
    scale_x_discrete(name=NULL,breaks=unique(df$Var2)[floor(length(unique(df$Var2))/2)],labels=x.labs[i])+
    scale_y_discrete(name=NULL)+
    theme(legend.position=NULL,axis.title.x=element_blank(),axis.text.x=element_text(angle=90,hjust=1,vjust=0.5))
  if(i != 1) plot.list[[i]] <- plot.list[[i]]+theme(axis.text.y=element_blank())
  if(i != 3) plot.list[[i]] <- plot.list[[i]]+theme(legend.position = "none")
}

然后,我想将它们水平组合在一起,并用很小的边距将它们分开,并使它们的宽度与列数相关。

尝试使用gridExtra's来实现这一点arrangeGrob

gridExtra::arrangeGrob(grobs=plot.list,ncol=length(plot.list),widths=n.cols,padding=0.01)

或与cowplot's plot_grid

cowplot::plot_grid(plotlist=plot.list,align="v",axis="tb",ncol=length(plot.list),rel_widths=n.cols)

给我: 在此处输入图像描述

所以我的问题是:

  1. 如何让它们具有相同的高度并使 x 轴标签向下延伸到不同的长度?
  2. 缩小它们之间的空间?我尝试降低padding价值,但没有看到任何变化

请注意,我知道首先使用facet_grid可能是创建它的明显方法,但我特别需要首先创建绘图列表,然后才将它们组合起来。

4

1 回答 1

4

两者都egg:ggarrange可以cowplot::plot_grid()做到这一点。

至于回答1,试试:

library(egg)
plot1 <- plot.list[[1]]
plot2 <- plot.list[[2]]
plot3 <- plot.list[[3]]
ggarrange(plot1, plot2, plot3, ncol = 3, widths = c(600,30,300)) #originally had the 20,3,10, but I don't think it scales right.

至于2,你可以plot.margins事先设置你,像以前一样安排。

plot1 <- plot.list[[1]] + theme(plot.margin = margin(1,0,1,1)) # order is top, right, bottom, left. Go negative if you want them to touch.
plot2 <- plot.list[[2]] + theme(plot.margin = margin(1,0,1,0))
plot3 <- plot.list[[3]] + theme(plot.margin = margin(1,1,1,0))
ggarrange(plot1, plot2, plot3, ncol = 3, widths = c(600,30,300))

plot_grid将为您提供与下图相同的图像。

cowplot::plot_grid(plot1, plot2, plot3, ncol = 3, axis = "b", align = "h", rel_widths = c(600,30,300))

于 2018-11-13T21:17:01.890 回答