Results of a knowledge test from Junior Bake Off (Series 2, Episode 14).
Format
A data frame with 4 rows representing baker results from the spice-based knowledge test and 7 variables:
- baker
A character string with a given name or nickname.
- guess_1,guess_2,guess_3
The different guesses (in order) for what the mystery spice was.
- correct_1,correct_2,correct_3
An integer whether the guess was correct (
1
) or wrong (0
).
Examples
if (require('tibble')) {
spice_test_wide
}
#> # A tibble: 4 × 7
#> baker guess_1 guess_2 guess_3 correct_1 correc…¹ corre…²
#> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 Emma Cinnamon Cloves Nutmeg 1 0 1
#> 2 Harry Cinnamon Cardamom Nutmeg 1 1 1
#> 3 Ruby Cinnamon Cumin Nutmeg 1 0 1
#> 4 Zainab Cardamom Couldn't remember the name Cinnamon 0 0 0
#> # … with abbreviated variable names ¹correct_2, ²correct_3
head(spice_test_wide)
#> # A tibble: 4 × 7
#> baker guess_1 guess_2 guess_3 correct_1 correc…¹ corre…²
#> <chr> <chr> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 Emma Cinnamon Cloves Nutmeg 1 0 1
#> 2 Harry Cinnamon Cardamom Nutmeg 1 1 1
#> 3 Ruby Cinnamon Cumin Nutmeg 1 0 1
#> 4 Zainab Cardamom Couldn't remember the name Cinnamon 0 0 0
#> # … with abbreviated variable names ¹correct_2, ²correct_3