Is their a way to merge or combine few boxplots into one
for example i have the below three box plots :
ggplot(mpg,aes(displ))+geom_boxplot()
ggplot(mpg,aes(hwy))+geom_boxplot()
ggplot(mpg,aes(cty))+geom_boxplot()
can i get all of them in one plot ?
thank you