Eurovision voting similarity

With the 2017 Eurovision season in the full swing, let’s take one last look at some voting patterns that emerged during the Eurovision 2016.

Data

First, I downloaded the detailed voting results of the Grand Final of 2016 from the official Eurovision website. This is a neatly organized xls file. It lets you look at how many points were awarded from each jury member to each participating country. So far so good. Any project that doesn’t start with scraping the web is a great project.

Computing similarity

The first question I wanted to ask was: which juries voted in the most similar way? First, here’s some background on how jury vote works. Each country has four jury members, who rank each Grand Final act on a scale from 1 to 25, where 1 is first place and 25 is the last place.

To answer my question, I compared how similar each pair of jury members voted within each country and then averaged the results. To get a correlation score for each pair of judges, I used Pearson correlation coefficient. Let’s say that we wanted to compute an average correlation score between jury member pairs for Poland. The formula to do so would look like this:

$$similarity(Poland) = \frac{1}{6}pearson(Poland_A, Poland_B) + pearson(Poland_A, Poland_C) + \\\\
pearson(Poland_A, Poland_D) + pearson(Poland_B, Poland_C) + pearson(Poland_B, Poland_D) + \\\\ pearson(Poland_C, Poland_D)$$

OK, let’s look into some results. As I mentioned before, I used Pearson’s correlation coefficient to compute the similarity between voting patterns for each judge pair. Pearson’s correlation coefficient can go from -1, when variables are reversely correlated to 1, when they are perfectly correlated.

Results

Ukraine judges agreed on average the most, achieving the average correlation score of 0.81. Here is the top five of the most similar judging, together with their average Pearson’s correlation score.

$$
\begin{array}{c|c}
\text{Country} & \text{Average correlation score}\\
\hline
\text{Ukraine} & 0.81 \\
\text{Germany} & 0.75\\
\text{Armenia} & 0.72\\
\text{Malta} & 0.7\\
\text{Czech Republic} & 0.7
\end{array}
$$

Let’s look into the countries whose judges disagreed the most.

$$
\begin{array}{c|c}
\text{Country} & \text{Average correlation score}\\
\hline
\text{Denmark} & -0.08 \\
\text{San Marino} & 0.16\\
\text{Hungary} & 0.21\\
\text{Macedonia} & 0.3\\
\text{Ireland} & 0.31
\end{array}
$$

Denmark is on top of that list. It may be because one of the judges misunderstood the judging rules. As a result, she ranked her favorite act last, and her least favorite act first.

Here are the visualizations of the voting. Notice how Denmark’s colors seem to be distributed in a random way. Ukraine’s chart, however, contains vertical bars of similar color. These indicate that the judges awarded the same country a similar rank. It seems that judges agreed the most about the top and the bottom of their ranks — notice the bars for Belgium, Azerbaijan, Germany, Cyprus, Lithuania, and Russia.

Leave a comment

Your email address will not be published. Required fields are marked *