randomizerlongform {touRnamentofchampions} | R Documentation |
randomizer long form
Description
A dataset containing information about each challenge: protein, vegetables, equipment, style, time However, it's in "long form" so each challenge shows up multiple times It categorizes the randomizer ingredients into categories and subcategories
Usage
data(randomizerlongform)
Format
This data frame contains the following columns:
season
Season number
episode
Episode number
round
Stage of the tournament: Qualifier semi-final, Qualifier final, Round of 32, Round of 16, Quarterfinals, Semifinals, Final
challenge
Variable to help distinguish challenges within the same Coast & Round
coast
East or West
region
The region depends on how many chefs start the competition. If there are 16 chefs, then the region is left blank. If there are 32 chefs, then the regions are A or B.
time
Length of challenge. Unit is minutes
randomizer
What wheel was spun (1, 2, 3, 4, or 5)
value
What was the value/item on the randomizer wheel?
category
Categorical variable: protein,produce,equipment, style,wildcard
subcategory
Subcategories for protein (Beef, Fish, Game, Other, Pork, Poultry, Shellfish) and style (Region/country, Style, Theme)
Source
https://en.wikipedia.org/wiki/Tournament_of_Champions_(TV_series)
Examples
library(tidyverse)
randomizerlongform %>%
filter(category == "protein") %>%
group_by(subcategory) %>%
summarise(n=n())