| loadouts | R Documentation |
Loadouts
Description
Information on each survivalists loadout of 10 items
Usage
loadouts
Format
This data frame contains the following columns:
versionCountry code for the version of the show
seasonThe season number
idSurvivalist ID
nameName of the survivalist
item_numberItem number
item_detailedDetailed loadout item description
itemLoadout item. Simplified for aggregation
Source
https://en.wikipedia.org/wiki/Alone_(TV_series)
Examples
library(dplyr)
library(ggplot2)
library(forcats)
loadouts |>
count(item) |>
mutate(item = fct_reorder(item, n, max)) |>
ggplot(aes(item, n)) +
geom_col() +
geom_text(aes(item, n + 3, label = n)) +
coord_flip()