Bakes for both the signature and showstopper challenges for each baker across all 10 GBBO series.
Format
A data frame with 548 rows representing individual signatures and showstoppers for each baker and 6 variables:
- series
An integer denoting UK series (
1
-10
).- episode
An integer denoting episode number within a series.
- baker
A character string with a given name 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 value of
1
means the baker was the winner of the technical challenge. IfNA
, the baker did not appear in the episode.- showstopper
A character string containing the bake for the showstopper challenge for that baker/episode.
Examples
if (require('tibble')) {
bakes_raw
}
#> # A tibble: 548 × 6
#> series episode baker signature techn…¹ shows…²
#> <int> <int> <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 N/A
#> 4 1 1 Jasminder "Fresh Mango and Passion Fruit Humm… NA N/A
#> 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 538 more rows, and abbreviated variable names ¹technical, ²showstopper
head(bakes_raw)
#> # A tibble: 6 × 6
#> series episode baker signature techn…¹ shows…²
#> <int> <int> <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 N/A
#> 4 1 1 Jasminder Fresh Mango and Passion Fruit Hummin… NA N/A
#> 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