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:
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 rounds 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.
chef
Name of chef
commentator
Who presented their food to the judges: Simon Majumdar or Justin Warner? In Qualifying rounds, it could be presented by Hunter Fieri
order
When did their food get presented to the judges: Presented first or Presented second. In Qualifying rounds, it could be presented third or fourth.
score_taste
Score that chef received for the taste of their dish: values of 0- 50
score_randomizer
Score 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_presentation
Score that chef received for the presentation of their dish: values of 0- 20. (Except in Season 5 Qualifying rounds, the values are 0-10.)
total
Total score that chef received: between 0 and 100
winner
Categorical variable: Winner, Loser, Tie
x
Numeric X value to help with visualizing bracket
y
Numeric 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)