Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

jury_votes

Jury votes


Description

A dataset containing details on the final jury votes to determine the winner for each season

Usage

jury_votes

Format

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

Source

Examples

library(dplyr)
jury_votes %>%
  filter(season == 40) %>%
  group_by(finalist) %>%
  summarise(votes = sum(vote))

survivoR

Data from all Seasons of Survivor (US) TV Series in Tidy Format

v0.9.12
MIT + file LICENSE
Authors
Daniel Oehm [aut, cre]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.