Hi, I would like to create a plot where the plots below are above each other. I used facet_grid to create them, can I use it again? If yes, how? Thank you very much!
ggplot(pos8,aes(x=factor(EPG,levels=c("EPP","S&D","ECR","ALDE","GUE/NGL","Greens/EFA","EFFD","ENF")),y=value,color=EPG,weight=seats))+
geom_jitter(position=position_jitter(width=0.2,height=0),alpha=0.8)+
geom_boxplot(alpha=0,show.legend=FALSE,lwd=1)+
scale_color_manual(limits=c("EPP","S&D","ECR","ALDE","GUE/NGL","Greens/EFA","EFDD","ENF"),
values=c("#fcdd22","#fc1414","#106da8","#ec008c","#c6262c","#44911d","#00abbc","black"))+
guides(color=guide_legend(""))+
theme(legend.position="bottom",
axis.text.y=element_blank(),
axis.ticks=element_blank())+
labs(x="",y="",title="Figure 2",subtitle="Left-right")+
facet_grid(variable~.)+
coord_flip()