Alone TV Series
10 survivalists are dropped in a remote area to fend for themselves - 1 survives
@kaggle.joebeachcapital_alone_tv_series
10 survivalists are dropped in a remote area to fend for themselves - 1 survives
@kaggle.joebeachcapital_alone_tv_series
Updated to include all season up to and including season 10.
This dataset contains data from the TV series Alone collected and shared by Dan Oehm. As described in Oehm's blog post](https://gradientdescending.com/alone-r-package-datasets-from-the-survival-tv-series/), in the survival TV series ‘Alone,' 10 survivalists are dropped in an extremely remote area and must fend for themselves. They aim to last 100 days in the Artic winter, living off the land through their survival skills, endurance, and mental fortitude.
This package contains four datasets:
survivalists.csv: A data frame of survivalists across all 9 seasons detailing name and demographics, location and profession, result, days lasted, reasons for tapping out (detailed and categorised), and page URL.
loadouts.csv: The rules allow each survivalist to take 10 items with them. This dataset includes information on each survivalist's loadout. It has detailed item descriptions and a simplified version for easier aggregation and analysis
episodes.csv: This dataset contains details of each episode including the title, number of viewers, beginning quote, and IMDb rating. New episodes are added at the end of future seasons.
seasons.csv: The season summary dataset includes location, latitude and longitude, and other season-level information. It includes the date of drop-off where the information exists.
Acknowledging the Alone dataset
Dan Oehm:
Alone data package: https://github.com/doehm/alone
Alone data package blog post: https://gradientdescending.com/alone-r-package-datasets-from-the-survival-tv-series/
Examples of analyses are included in Dan Oehm's blog post.
References
History: https://www.history.com/shows/alone/cast
Wikipedia: https://en.wikipedia.org/wiki/Alone_(TV_series)
Wikipedia (episodes): https://en.wikipedia.org/wiki/List_of_Alone_episodes#Season_1_(2015)_-_Vancouver_Island
CREATE TABLE episodes (
"version" VARCHAR,
"season" DOUBLE,
"episode_number_overall" DOUBLE,
"episode" DOUBLE,
"title" VARCHAR,
"air_date" TIMESTAMP,
"viewers" DOUBLE,
"quote" VARCHAR,
"author" VARCHAR,
"imdb_rating" DOUBLE,
"n_ratings" DOUBLE,
"n_remaining" DOUBLE,
"day_start" DOUBLE
);
CREATE TABLE loadouts (
"version" VARCHAR,
"season" DOUBLE,
"id" VARCHAR,
"name" VARCHAR,
"item_number" DOUBLE,
"item_detailed" VARCHAR,
"item" VARCHAR
);
CREATE TABLE seasons (
"version" VARCHAR,
"season" DOUBLE,
"location" VARCHAR,
"region" VARCHAR,
"country" VARCHAR,
"n_survivors" DOUBLE,
"lat" DOUBLE,
"lon" DOUBLE,
"date_drop_off" TIMESTAMP
);
CREATE TABLE survivalists (
"version" VARCHAR,
"season" DOUBLE,
"id" VARCHAR,
"name" VARCHAR,
"first_name" VARCHAR,
"last_name" VARCHAR,
"age" DOUBLE,
"gender" VARCHAR,
"city" VARCHAR,
"state" VARCHAR,
"country" VARCHAR,
"result" DOUBLE,
"days_lasted" DOUBLE,
"medically_evacuated" BOOLEAN,
"reason_tapped_out" VARCHAR,
"reason_category" VARCHAR,
"episode_tapped" DOUBLE,
"team" VARCHAR,
"day_linked_up" DOUBLE,
"profession" VARCHAR
);
Anyone who has the link will be able to view this.