I'm using this link to create the circle: Draw a circle with ggplot2
However, when I try to add my next ggplot which uses data from a CSV, I get two separate graphs. I'd like to have the circle overlay the scatterplot.
ggplot(CSV1, aes(x= Pos.X..µm., y = Pos.Y..µm.)) +
geom_point()
ggplot(dat, aes(x,y)) + geom_path()
Thanks!