CommencerCommencer gratuitement

Tracking a virus outbreak

You're a doctor in a remote village confronted with a virus outbreak. You have been collecting data on when your patients got infected and recovered in a data frame named patient_df. Your goal is to create a visual with the number of sick patients over time. You'll first have to reshape the data so that you can count the number of sick patients per day.

The data frame has three columns: patient, infected, and recovered.

The dplyr and ggplot2 packages have been pre-loaded for you.

Cet exercice fait partie du cours

Reshaping Data with tidyr

Afficher le cours

Exercice interactif pratique

Essayez cet exercice en complétant cet exemple de code.

patient_df %>% 
  # Pivot the infected and recovered columns to long format
  ___
Modifier et exécuter le code