| castaway_details {survivoR} | R Documentation |
Castaway details
Description
A dataset containing details on the castaways for each season
Usage
castaway_details
Format
This data frame contains the following columns:
castaway_idID 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).
full_nameFull name of the castaway
full_name_detailedA detailed version of full_name for plotting e.g. 'Boston' Rob Mariano
castawayShort name of the castaway. Name typically used during the season. Sometimes there are multiple people with the same name e.g. Rob C and Rob M in Survivor All-Stars. This field takes the most verbose name used
date_of_birthDate of birth
date_of_deathDate of death
genderGender of castaway
africanTRUEif African-American or African-Canadian as per https://survivor.fandom.com/wiki/Main_PageasianTRUEif Asian-American or Asian-Canadian as per https://survivor.fandom.com/wiki/Main_Pagelatin_americanTRUEif Latin-American as per https://survivor.fandom.com/wiki/Main_Pagenative_americanTRUEif Native-American as per https://survivor.fandom.com/wiki/Main_PagebipocBlack, Indigenous, or Person of Colour
lgbtLGBTQIA+ status as listed on the survivor wiki.
personality_typeThe Myer-Briggs personality type of the castaway
occupationOccupation
three_wordsAnswer to the question "three words to describe you?"
hobbiesAnswer to the question "what are you favourite hobbies?"
pet_peevesAnswer to the question "what are your pet peeves?"
raceRace (if known)
ethnicityEthnicity (if known)
Details
Race and ethnicity data is included if known and can point to a source, rather than making an assumption about an individual.
poc has been deprecated and replaced with bipoc which is now logical and only for the US. bipoc is
TRUE if any of african, asian, latin_american, or native_american is TRUE.
Source
https://survivor.fandom.com/wiki/Main_Page, https://www.personality-database.com/
Examples
library(dplyr)
castaway_details |>
count(gender)