Details about the three challenges (signature, technical, and showstopper) for each baker/episode across all 10 GBBO series.
Format
A data frame with 704 rows representing individual bakers per episode and 6 variables:
- series
A factor denoting UK series (
1
-10
).- episode
A factor denoting episode number within a series.
- baker
A character string giving given or nickname.
- signature
A character string containing the bake for the signature challenge for that baker/episode.
- technical
An integer denoting the rank on the technical challenge for that baker/episode. A rank of
1
is winner of the technical challenge.- showstopper
A character string containing the bake for the showstopper challenge for that baker/episode.
Examples
if (require('tibble')) {
episodes_raw
}
#> # A tibble: 704 × 6
#> series episode baker signature techn…¹ shows…²
#> <fct> <fct> <chr> <chr> <int> <chr>
#> 1 1 1 Annetha "Light Jamaican Black Cakewith Stra… 2 Red, W…
#> 2 1 1 David "Chocolate Orange Cake" 3 Black …
#> 3 1 1 Edd "Caramel Cinnamon and Banana Cake" 1 NA
#> 4 1 1 Jasminder "Fresh Mango and Passion Fruit Humm… NA NA
#> 5 1 1 Jonathan "Carrot Cake with Lime and Cream Ch… 9 Three …
#> 6 1 1 Lea "Cranberry and Pistachio Cakewith O… 10 Raspbe…
#> 7 1 1 Louise "Carrot and Orange Cake" NA Never …
#> 8 1 1 Mark "Sticky Marmalade Tea Loaf" NA Heart-…
#> 9 1 1 Miranda "Triple Layered Brownie Meringue Ca… 8 Three …
#> 10 1 1 Ruth "Three Tiered Lemon Drizzle Cakewit… NA Classi…
#> # … with 694 more rows, and abbreviated variable names ¹technical, ²showstopper
head(episodes_raw)
#> # A tibble: 6 × 6
#> series episode baker signature techn…¹ shows…²
#> <fct> <fct> <chr> <chr> <int> <chr>
#> 1 1 1 Annetha Light Jamaican Black Cakewith Strawb… 2 Red, W…
#> 2 1 1 David Chocolate Orange Cake 3 Black …
#> 3 1 1 Edd Caramel Cinnamon and Banana Cake 1 NA
#> 4 1 1 Jasminder Fresh Mango and Passion Fruit Hummin… NA NA
#> 5 1 1 Jonathan Carrot Cake with Lime and Cream Chee… 9 Three …
#> 6 1 1 Lea Cranberry and Pistachio Cakewith Ora… 10 Raspbe…
#> # … with abbreviated variable names ¹technical, ²showstopper