| 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:
seasonSeason number
episodeEpisode number
roundStage of the tournament: Qualifier semi-final, Qualifier final, Round of 32, Round of 16, Quarterfinals, Semifinals, Final
challengeVariable to help distinguish challenges within the same Coast & Round
coastEast or West
regionThe 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.
timeLength of challenge. Unit is minutes
randomizerWhat wheel was spun (1, 2, 3, 4, or 5)
valueWhat was the value/item on the randomizer wheel?
categoryCategorical variable: protein,produce,equipment, style,wildcard
subcategorySubcategories 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())