I have several ggplot objects called p1,p2,p3,p4. I wouldd like to plot them all in one page. To do so I am creating a list of ggplots:
library(cowplot)
plot_grid(p1, p2, p3, p4, labels = "AUTO")
This command plots all of them but it changes the theme and background and other details of my single original plots.
Do you know how can I plot them together without loosing any feature of original plots? Thanks