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()