Introduction to the Tidyverse
David Robinson
Chief Data Scientist, DataCamp
ggplot(gapminder_2007, aes(x = lifeExp)) +
geom_histogram()
ggplot(gapminder_2007, aes(x = lifeExp)) +
geom_histogram(binwidth = 5)
scale_x_log10()
Introduction to the Tidyverse