I used to use cowplot
to align multiple ggplot2 plots but when the x-axis are of different ranges, some extra work is needed to align the axis as well.
The other day I was reading a blog post by GuangChuang Yu
and he exactly tackled this problem. His packages such as ChIPseeker
, ClusterProfiler
, ggtree
are quite popular among the users.
Some dummy example from his post:
library(dplyr)
library(ggplot2)
library(ggstance)
librar …