Learning ggplot2 basics: ggplot2 works on the concept of layers so you can add one layer on top of the other. ggplot(data=mpg, aes(x=displ, y=hwy))+ geom_point(aes ...