Introduction to the Tidyverse
David Robinson
Chief Data Scientist, DataCamp






geom_point()

geom_line()

ggplot(year_continent, aes(x = year, y = meanLifeExp, color = continent)) +
geom_line() +
expand_limits(y = 0)
Introduction to the Tidyverse