| results {touRnamentofchampions} | R Documentation |
results
Description
A dataset containing win and loss data for each chef in each episode
Usage
data(results)
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 rounds 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.
chefName of chef
commentatorWho presented their food to the judges: Simon Majumdar or Justin Warner? In Qualifying rounds, it could be presented by Hunter Fieri
orderWhen did their food get presented to the judges: Presented first or Presented second. In Qualifying rounds, it could be presented third or fourth.
score_tasteScore that chef received for the taste of their dish: values of 0- 50
score_randomizerScore that chef received for how well they used the Randomizer: values of 0- 30. (Except in Season 5 Qualifying rounds, the values are 0-40.)
score_presentationScore that chef received for the presentation of their dish: values of 0- 20. (Except in Season 5 Qualifying rounds, the values are 0-10.)
totalTotal score that chef received: between 0 and 100
winnerCategorical variable: Winner, Loser, Tie
xNumeric X value to help with visualizing bracket
yNumeric Y value to help with visualizing bracket
Source
https://en.wikipedia.org/wiki/Tournament_of_Champions_(TV_series)
Examples
library(tidyverse)
results %>%
group_by(season) %>%
filter(round == "Final") %>%
select(chef,season,coast,total)