UMCarpentries / intro-curriculum-r

Custom curriculum for teaching R, the Unix Shell, & Git with an integrated workflow and reproducible research practices.
https://umcarpentries.org/intro-curriculum-r/
Other
9 stars 12 forks source link

Move north America 2007 gapminder data earlier in lesson #66

Closed sklucas closed 3 years ago

sklucas commented 3 years ago

For clarity, move this code chunk to right before cleaning data, so that it's ready to go when we enter the Joining data frames section.

gapminder_data <- read_csv("data/gapminder_data.csv") %>%
  filter(year == 2007 & continent == "Americas") %>%
  select(-year, -continent)