Learn R Programming

topChef (version 0.2.0)

judges: judges

Description

A dataset containing information about who were the guest judges for each challenge

Usage

data(judges)

Arguments

Format

This data frame contains the following columns:

season

Name of season

seasonNumber

Season number

series

Top Chef US (listed as US); Top Chef US Masters (listed as US Masters); Top Chef Canada (listed as Canada)

episode

Episode number

challengeType

Challenge type: qualifying challenge, elimination, quickfire, sudden death quickfire, quickfire elimination, battle of the sous chefs

outcomeType

Is the challenge run as a team or as an individual?

guestJudge

Name of guest judge

gender

Gender of Chef

personOfColor

Flag for whether the Chef is a person of color. Will be blank if they are not

competedOnTC

Will have a value of Yes if they competed on a season of Top Chef

otherShows

Information about other shows that this individual has appeared on

Examples

Run this code
library(dplyr)
library(tidyr)
judges %>%
  filter(guestJudge == "Eric Ripert") %>%
  group_by(challengeType) %>%
  summarise(n=n())

Run the code above in your browser using DataLab