castaways: Castaways

castawaysR Documentation

Castaways

Description

A dataset containing details on the results for every castaway and season

Usage

castaways

Format

This data frame contains the following columns:

version

Country code for the version of the show

version_season

Version season key

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).

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

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

result_number

Result number i.e. the final place. NA for castaways that were voted out but later returned e.g. Redemption Island

jury_status

Jury status

original_tribe

Original tribe name

Details

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.

Source

https://en.wikipedia.org/wiki/Survivor_(American_TV_series)

Examples

library(dplyr)
castaways %>%
  filter(season == 40)

survivoR documentation built on July 9, 2023, 5:21 p.m.