Is there a way to read a saved plot in to R, and assign it an object - the equivalent of reading in a csv?
df<-read.csv('test.data.csv')
The end goal is that I have 500 plots that were saved using ggsave() that I'd like to reposition via cowplot(), which only seems to be able to access objects in the active working environment.
Thanks for any insight.