我正在创建一个list
热ggplot
图,它们具有相同的行数但不同的列数和不同长度的 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)
所以我的问题是:
- 如何让它们具有相同的高度并使 x 轴标签向下延伸到不同的长度?
- 缩小它们之间的空间?我尝试降低
padding
价值,但没有看到任何变化
请注意,我知道首先使用facet_grid
可能是创建它的明显方法,但我特别需要首先创建绘图列表,然后才将它们组合起来。