Jury votes
A dataset containing details on the final jury votes to determine the winner for each season
jury_votes
This data frame contains the following columns:
season_name
The season name
season
The season number
castaway
Name of the castaway
finalist
The finalists for which a vote can be placed
vote
Vote. 0-1 variable for easy summation
castaway_id
ID of the castaway (primary key). Consistent across seasons and name changes e.g. Amber Brkich / Amber Mariano. The first two letters reference the country of the version played e.g. US, AU. To recreated the old ID simply extract teh digits
finalist_id
The ID of the finalist for which a vote can be placed. Consistent with castaway ID
library(dplyr) jury_votes %>% filter(season == 40) %>% group_by(finalist) %>% summarise(votes = sum(vote))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.