I want to create a big plot which contains four subplots made by plot() function.
All the subplots are saved as png/pdf file format.
Is there way in R to import these plots to R then create a big plot that contains all the subplots?
I want to create a big plot which contains four subplots made by plot()
Share
Would it not be easier to fix the problem at source by creating each plot, laying them out together then saving them as one file? The
gridlayout functions should work with the baseplotfunction as far as I can tell. Here’s a simple example usingggplot2. If you useggplotyou could perhaps also use the facet functions. Code follows after image.