Overlaying G-plots

60 Views Asked by At

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!

1

There are 1 best solutions below

0
On

with ggplot you can stack layers of different data sources and geometries* like:

ggplot() +
    geom_point(data = dataframe_1, aes(x = ..., y = ...)) +
    geom_point(data = dataframe_2, aes(x = ..., y = ...))
  • technically at least (may produce conceptually nonsensical charts though)