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.
Diese Übung ist Teil des Kurses
Communicating with Data in the Tidyverse
Anleitung zur Übung
- Use
filter()
to only retain the years 1996 and 2006 in the data set. - Use the OR operator in your
filter()
function call.
Interaktive Übung
Versuche dich an dieser Übung, indem du diesen Beispielcode vervollständigst.
# Filter ilo_data to retain the years 1996 and 2006
ilo_data <- ilo_data %>%
___