library(tidyverse)Feb. 5
Load Packages
Scatterplot
ggplot(midwest, aes(x = poptotal, y = popdensity)) +
geom_point() +
labs(x = "Population Total",
y = "Population Density",
title = "Population vs. Density"
)library(tidyverse)ggplot(midwest, aes(x = poptotal, y = popdensity)) +
geom_point() +
labs(x = "Population Total",
y = "Population Density",
title = "Population vs. Density"
)