Save a list of plots from environment in R
I want to save all my plots from my R environment with ggsave(). How can I save list of plots from environment in R and then use the list as input to ggsave() ? I got some plots with cars from here to illustrate: PlotA <- ggplot(mtcars, aes(x=hp, y=mpg, color=cyl, shape=cyl)) + geom_point(size=3) PlotB <-… Read More Save a list of plots from environment in R