This data has one row per season aired in the US as 'The Great British Baking Show'.
Format
A data frame with 8 rows representing individual series and 11 variables:
- series
an integer denoting UK series (
1
-8
)- episode
an integer denoting total number of episodes within series
- us_season
an integer denoting US season (
1
-5
)- us_airdate
a date denoting original airdate of episode in the US, according to pbs.org
Source
US airdates manually recorded from https://www.pbs.org/food/shows/great-british-baking-show/
Examples
if (require('tibble')) {
seasons_raw
}
#> # A tibble: 50 × 4
#> series episode us_season us_airdate
#> <int> <int> <int> <date>
#> 1 4 1 1 2014-12-28
#> 2 4 2 1 2015-01-04
#> 3 4 3 1 2015-01-11
#> 4 4 4 1 2015-01-18
#> 5 4 5 1 2015-01-25
#> 6 4 6 1 2015-02-01
#> 7 4 7 1 2015-02-08
#> 8 4 8 1 2015-02-15
#> 9 4 9 1 2015-02-22
#> 10 4 10 1 2015-03-01
#> # … with 40 more rows
head(seasons_raw)
#> # A tibble: 6 × 4
#> series episode us_season us_airdate
#> <int> <int> <int> <date>
#> 1 4 1 1 2014-12-28
#> 2 4 2 1 2015-01-04
#> 3 4 3 1 2015-01-11
#> 4 4 4 1 2015-01-18
#> 5 4 5 1 2015-01-25
#> 6 4 6 1 2015-02-01