CommencerCommencer gratuitement

New-Zealand's bird of the year

Every year New Zealanders vote en masse to decide which species gets the bird of the year trophy. The contest is organized by the Forest & Bird agency which allows each person to give points to up to five birds (first pick gets 5 points, second 4, …). Your job is to decide this year's winner from the messy dataset that's been pre-loaded for you as bird_df.

The dplyr package has 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.

bird_df %>%
  # Pivot the data to create a two column data frame
  ___(
    ___,
    names_to = ___,
    names_prefix = ___,
    names_transform = ___,
    values_to = ___,
    values_drop_na = ___
  )
Modifier et exécuter le code