Get startedGet started for free

Prepare the data set for the faceted plot

You're now going to prepare your data set for producing the faceted scatter plot in the next exercise, as mentioned in the video.
For this, the data set needs to contain only the years 1996 and 2006, because your plot will only have two facets. ilo_data has been pre-loaded for you.

This exercise is part of the course

Communicating with Data in the Tidyverse

View Course

Exercise instructions

  • Use filter() to only retain the years 1996 and 2006 in the data set.
  • Use the OR operator in your filter() function call.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Filter ilo_data to retain the years 1996 and 2006
ilo_data <- ilo_data %>%
  ___
Edit and Run Code