Introduction to the Tidyverse
David Robinson
Chief Data Scientist, DataCamp

library(ggplot2)
ggplot(gapminder, aes(x = gdpPerCap, y = lifeExp)) +
geom_point()

ggplot(gapminder_2007, aes(x = gdpPercap, y = lifeExp)) +
geom_point() +
scale_x_log10()
Introduction to the Tidyverse