I have three ggplots (g1, g2, g3)
.
They are all from different datasets, and they each have the same xlim
and ylim
.
I would like to plot them all on one page and overlay them.
I have only found resources online explaining how to plot multiple density plots from the same dataset on the same page.
Is there code I can write so that all subsequent plots are plotted on the same page?
As @Phil pointed out you can't overlay different plots. However, you can make one plot containing all three density plots. (; Using
mtcars
andmpg
as example datasets try this:Created on 2020-03-29 by the reprex package (v0.3.0)