ComenzarEmpieza gratis

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.

Este ejercicio forma parte del curso

Communicating with Data in the Tidyverse

Ver curso

Instrucciones del ejercicio

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

Ejercicio interactivo práctico

Prueba este ejercicio y completa el código de muestra.

# Filter ilo_data to retain the years 1996 and 2006
ilo_data <- ilo_data %>%
  ___
Editar y ejecutar código