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.
This exercise is part of the course
Reshaping Data with tidyr
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
bird_df %>%
# Pivot the data to create a two column data frame
___(
___,
names_to = ___,
names_prefix = ___,
names_transform = ___,
values_to = ___,
values_drop_na = ___
)