I have to overlay two plots but am having troubling with naming them and going about plotting them. I've tried doing the code below for the two plots I want to compare.
geom_plot1=ggplot(data=DataframeName,mapping=aes(x=ColumnNameOnly))
geom_plot2=ggplot(data=DataframeName,mapping=aes(x=ColumnNameOnly))
Then from there I used:
ggplot(DataFrame) +
geom_plot1(aes(x=Column1, y=Column2)) +
geom_plot2(aes(x=Column1,y=Column3)) +
...FormattingCommands...
I know very well that putting the name at the beginning of the first code is not how you go about naming them, so if anyone knows how to name the plots and then overlay the plots I'd really appreciate it!
with ggplot you can stack layers of different data sources and geometries* like: