I have created several plots that each required several lines of code.
I am trying to combine them using par(mfrow=c(1,6))
. However, rather than programming the plot creation below this code (which would be rather messy), I would like simply 'list' the saved plots underneath that command, and have those combined.
I have tried
par(mfrow=c(1,5))
# The premade plots
scatter_1
scatter_2
scatter_3
scatter_4
scatter_5
But the plots still are outputted individually rather than combined. Any suggestions?