judges {touRnamentofchampions} | R Documentation |
A dataset containing information about who were the judges for each challenge/episode
data(judges)
This data frame contains the following columns:
season
Season number
episode
Episode number
judge
Name of guest judge
gender
Whether the chef is male, female, or non-binary
round
Stage of the tournament: Qualifier semi-final, Qualifier final, Round of 32, Round of 16, Quarterfinals, Semifinals, Final
https://en.wikipedia.org/wiki/Tournament_of_Champions_(TV_series)
library(tidyverse)
judges %>%
filter(judge == "Ming Tsai") %>%
group_by(season,episode)