3 ago 2022

#tidytuesday:Eurovision (What happened in 1956?)

Another special year. It was the first edition of Eurovision Festival with seven participant countries (founders) and two artists representing each country with different songs, except  Switzerland and Luxemburg with just one singer  for the two songs. 

Lys Assia from Switzerland was the winner.

There is a nice explanation on Wikipedia about that edition.

eurovision_1 %>%
    filter(year == 1956) %>%
    count(artist_country, sort = TRUE)
 A tibble: 7 × 2
artist_country               n
<chr>                      <int>
Belgium                      2
France                       2
Germany                      2
Italy                        2
Luxembourg                   2
Netherlands                  2

Switzerland                  2

eurovision_1 %>% 
+   filter(year == 1956) %>% 
+   count(artist, artist_country, song, winner, sort = TRUE) 
# A tibble: 14 × 5
   artist                 artist_country song                            winner     n
   <chr>                  <chr>          <chr>                           <lgl>  <int>
 1 Corry Brokken          Netherlands    Voorgoed Voorbij                FALSE      1
 2 Dany Dauberson         France         Il Est Là                       FALSE      1
 3 Franca Raimondi        Italy          Aprite Le Finestre              FALSE      1
 4 Freddy Quinn           Germany        So Geht Das Jede Nacht          FALSE      1
 5 Fud Leclerc            Belgium        Messieurs Les Noyés De La Seine FALSE      1
 6 Jetty Paerl            Netherlands    De Vogels Van Holland           FALSE      1
 7 Lys Assia              Switzerland    Das Alte Karussell              FALSE      1
 8 Lys Assia              Switzerland    Refrain                         TRUE       1
 9 Mathé Altéry           France         Le Temps Perdu                  FALSE      1
10 Michèle Arnaud         Luxembourg     Les Amants De Minuit            FALSE      1
11 Michèle Arnaud         Luxembourg     Ne Crois Pas                    FALSE      1
12 Mony Marc              Belgium        Le Plus Beau Jour De Ma Vie     FALSE      1
13 Tonina Torielli        Italy          Amami Se Vuoi                   FALSE      1
14 Walter Andreas Schwarz Germany        Im Wartesaal Zum Großen Glück   FALSE      1

All this must  be taken into account when working with some statistics with the Eurovision data base.


No hay comentarios:

Publicar un comentario