loadouts {alone} | R Documentation |
Loadouts
Description
Information on each survivalists loadout of 10 items
Usage
loadouts
Format
This data frame contains the following columns:
version
Country code for the version of the show
season
The season number
id
Survivalist ID
name
Name of the survivalist
item_number
Item number
item_detailed
Detailed loadout item description
item
Loadout 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()
[Package alone version 0.4 Index]