Skip to content

Introduction to the Tidyverse

Run the hidden code cell below to import the data used in this course.

Add your notes here

library(gapminder)
library(dplyr)

# Filter for China in 2002
gapminder %>%
filter (year == 2002, country == "China")