Scatter Plots with ggplot2
Scatter Plots
Scatter plots help visualize relationships between two numerical variables.
r
ggplot(mtcars, aes(x=mpg, y=hp)) +
geom_point()
Next Tutorial: Bar Charts

