Castaways
A dataset containing details on the results for every castaway and season
castaways
This data frame contains the following columns:
season
Sesaon number
season_name
Season name
full_name
Full name of the castaway
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 (TBA). To recreate the old ID simply extract the digits (See details)
castaway
Name of castaway. Generally this is the name they were most commonly referred to or nickname e.g. no one called Coach, Benjamin. He was simply Coach
age
Age of the castaway during the season they played
city
City of residence during the season they played
state
State of residence during the season they played
personality_type
The Myer-Briggs personality type of the castaway. This will be removed from this table and maintained on castaway_details
in later releases
episode
Episode number
day
Number of days the castaway survived. A missing value indicates they later returned to the game that season
order
Boot order. Order in which castaway was voted out e.g. 5 is the 5th person voted of the island
result
Final result
jury_status
Jury status
original_tribe
Original tribe name
swapped_tribe
Swapped tribe name
swapped_tribe_2
Second swapped tribe in the event of a second tribe swap or other tribe restructure such as absorbed tribe, outcasts, etc
merged_tribe
Merged tribe name
total_votes_received
Total number of tribal votes received during the main game for a given season (not overall for those who have played more than once). This includes votes from ties
immunity_idols_won
The number of immunity idols won by a castaway for the given season
If the original castaway_id
is desired simply extract the digits from the ID e.g.
castaway_id = as.numeric(str_extract(castaway_id, '[:digit:]+'))
in a mutate step.
library(dplyr) castaways %>% filter(season == 40)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.