Information about each baker who has appeared on the show.
Format
A data frame with 120 rows representing individual bakers and 8 variables:
- series
A factor denoting UK series (
1
-10
).- baker_full
A character string giving full name.
- baker
A character string with a given name or nickname.
- age
An integer denoting age in years at first episode appeared.
- occupation
A character string giving occupation.
- hometown
A character string giving hometown.
- baker_last
A character string giving family name.
- baker_first
A character string giving given name.
Source
See https://en.wikipedia.org/wiki/The_Great_British_Bake_Off_(series_1)#The_Bakers, for example, for series 1 bakers.
Examples
if (require('tibble')) {
bakers_raw
}
#> # A tibble: 120 × 8
#> series baker_full baker age occup…¹ homet…² baker…³ baker…⁴
#> <fct> <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
#> 1 1 "Annetha Mills" Annetha 30 Midwife Essex Mills Annetha
#> 2 1 "David Chambers" David 31 Entrep… Milton… Chambe… David
#> 3 1 "Edward \"Edd\" Kimber" Edd 24 Debt c… Bradfo… Kimber Edward
#> 4 1 "Jasminder Randhawa" Jasmind… 45 Assist… Birmin… Randha… Jasmin…
#> 5 1 "Jonathan Shepherd" Jonathan 25 Resear… St Alb… Shephe… Jonath…
#> 6 1 "Lea Harris" Lea 51 Retired Midlot… Harris Lea
#> 7 1 "Louise Brimelow" Louise 44 Police… Manche… Brimel… Louise
#> 8 1 "Mark Whithers" Mark 48 Bus Dr… South … Whithe… Mark
#> 9 1 "Miranda Gore Browne" Miranda 37 Food b… Midhur… Browne Miranda
#> 10 1 "Ruth Clemens" Ruth 31 Retail… Poynto… Clemens Ruth
#> # … with 110 more rows, and abbreviated variable names ¹occupation, ²hometown,
#> # ³baker_last, ⁴baker_first
head(bakers_raw)
#> # A tibble: 6 × 8
#> series baker_full baker age occup…¹ homet…² baker…³ baker…⁴
#> <fct> <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
#> 1 1 "Annetha Mills" Annetha 30 Midwife Essex Mills Annetha
#> 2 1 "David Chambers" David 31 Entrep… Milton… Chambe… David
#> 3 1 "Edward \"Edd\" Kimber" Edd 24 Debt c… Bradfo… Kimber Edward
#> 4 1 "Jasminder Randhawa" Jasminder 45 Assist… Birmin… Randha… Jasmin…
#> 5 1 "Jonathan Shepherd" Jonathan 25 Resear… St Alb… Shephe… Jonath…
#> 6 1 "Lea Harris" Lea 51 Retired Midlot… Harris Lea
#> # … with abbreviated variable names ¹occupation, ²hometown, ³baker_last,
#> # ⁴baker_first