I would like to replay several recorded plot in one unique plot that contain all plots. This is an example of recorded plot that I created previously.
plot(1:10, main = "plot1")
PLOT1<-recordPlot()
plot(10:1, main = "plot2")
PLOT2<-recordPlot()
plot(rnorm(10), main = "plot3")
PLOT3<-recordPlot()
Then I tried to use
opar <- par()
par(mfcol = c(1, 3))
replayPlot(PLOT1)
replayPlot(PLOT2)
replayPlot(PLOT3)
But in these way I can only see one graph at the time and I want the three together.