Skip to main content
HomeBlogMachine Learning

Sports Analytics: How I Predicted the EURO 2024 Final

This article explores the application of sports analytics and machine learning to predict EURO 2024 match outcomes, delving into the challenges and methodologies.
Jun 2024  · 17 min read

When I was 14, I made my first football bet on the FIFA World Cup 2010 winner. Relying on intuition alone, I guessed each match and bet on the two finalists of my tournament plan: the Netherlands and Spain. In the end, those two teams made it to the final—I was thrilled that my predictions had come true.

Fast forward 14 years, I sought a project to deepen my Python and machine learning skills, which led me to a prediction project for EURO 2024. My main objective was to predict match results (win, draw, or loss) and the number of goals scored by each team.

In this article, I offer an overview of my EURO 2024 prediction project, highlighting the key steps I took, the challenges I encountered, and the insights I gained. For a deeper dive into the technical details, including code implementation, please refer to the accompanying notebook project—you’ll need a DataLab account to access all the files.

Challenges in Predicting Football Outcomes

Predicting football outcomes is notoriously challenging due to several factors. In football, the statistical distribution of goals is quite variable. At the same time, there are relatively few scoring opportunities per match compared to other team ball sports, leading to unpredictable outcomes.

Take handball, for example: its frequent scoring chances tend to produce more predictable results because the number of goals is more likely to reflect the creation and prevention of chances as the number of scoring attempts averages out over the course of the game. In football, however, it can sometimes be enough to “park the bus” in front of your goal and play one determined counterattack to turn the match upside down.

Additionally, football matches are characterized by high path dependency, meaning the momentum and outcome of the match usually heavily depend on the first goal. Small but significant actions can lead to a goal or red card and dramatically change a match's course, making predictions even more difficult.

The introduction of VAR (Video Assistant Referee) in recent years has added to the unpredictability, as it can overturn crucial decisions on the field. And let's not forget the elusive "form of the day," a factor I could write a book about as a fan of the notoriously unpredictable Eintracht Frankfurt (aptly nicknamed the "moody diva").

Sport Analytics for EURO 2024

Strategies to Solve Data Limitations

Besides the factors discussed, my prediction model also faces several additional data limitations I must address.

  • Lack of player-specific data: Without detailed player data, such as the existence of key players, individual performance metrics, or injuries, the model might miss critical factors that influence the match outcome. Although national teams are not exposed to the volatility of the transfer market like football clubs, the composition of squads changes a lot over the years, so it would be beneficial if the data reflected it.
  • Lack of in-game data: Missing in-game statistics, like possession percentages or pass completion rates during the match, can reduce the model's ability to make precise predictions. Data points like the minute and team of the match’s first goal also would help to trace patterns regarding the mentioned path dependency and thus make it easier to predict the direction the match could take. 

To address challenges with the data used, several strategies were used:

Imputing missing data

I filled in missing data points where possible to ensure the dataset remained comprehensive—for example, adding tactical formations for the matches to be predicted.

As most teams stick to the same formation, once they trained and tested it, I assumed that each team will play in the formation they used most often in the last five matches. This allows us to predict matches before the line-up becomes public, which only happens one hour before the match starts.

Excluding or replacing features

When neither imputation nor removal was practical, I excluded or replaced certain features to avoid compromising the model's accuracy.

Originally, for example, I wanted to do a two-level prediction that takes the primary features to predict secondary features like ball possession and expected goals, to predict the outcome based on those secondary features, too. For the sake of simplicity, I decided against this procedure, and instead assigned each team two features based on match average statistics to represent their playstyle.

Removing missing data

Where imputation wasn't feasible, I removed the missing data to maintain dataset integrity. Fortunately, there was only a small loss of observations, so the dataset still contained over 3,000 matches for model building. 

Data Pipeline: From Collection to Prediction

Having addressed the difficulties and limitations, let’s examine the process of turning raw data into insightful predictions. The data pipeline, the project's backbone, involved collecting, preprocessing, and preparing the data for modeling, leveraging various tactical, psychological, and historical features.

Data scraping

The initial step involved scraping historical match data from various sources, including Transfermarkt, to gather comprehensive information about past matches.

One row in the resulting DataFrame corresponds to one match from the perspective of one of the teams involved. This data was combined with FootyStats data to include playstyle features like average ball possession and efficiency metrics.

For more details, check out the data scraping notebook here.

Feature engineering

Following up, raw data was transformed into meaningful features that could be used by the machine learning models. This involved extracting values, transforming variables, and calculating averages.

A diagram of different colored dots

Clusters of efficiency versus vulnerability of all teams in the dataset

Several key features were identified and used in the models to enhance the accuracy of predictions. These features included:

  • Tactical formations: The formation of both teams and their number of strikers and defenders. The aim was to identify patterns of outcomes between various popular formations and the team's offensive and defensive capabilities.
  • Favorite/underdog status: To measure this simply and objectively, I derived this feature from UEFA Nations League levels (and corresponding FIFA World Ranking ranges for non-European teams) to indicate which team is expected to perform better.
  • Team form: The average goals scored and conceded in the last five matches provided insight into each team's current offensive and defensive performance level.
  • Style of play: Average ball possession and clusters of efficiency versus vulnerability metrics (see graph above) were used to capture a team's playing style. Efficiency was calculated as the ratio of goals to expected goals (xG), both for own-scored and conceded goals. The clusters were fitted on the qualified teams only, as they are the teams of interest, and then applied to all other teams with at least one match in the dataset. Please note that the value can be far off for non-European teams due to the limited number of matches in the data.
  • Stage: The tournament stage (group stage or knockout phase) was included to account for the different levels of pressure teams face. The idea was to discover patterns in performances depending on the stakes.
  • Team essence and long-term trends: This feature assumes that there is some inexplicable rest that can be captured as each team’s essence. Combined with a time variable, this feature represents elements not covered by other features, providing a comprehensive view of the team's overall performance and trends.

Before building the machine learning models the dataset is split up into unplayed and played matches to distinguish between labeled and unlabeled data. Furthermore, we take the logarithm of the highly right-skewed form features and apply normalization and one-hot encoding to ensure the data is in a suitable format.

The team variables including the long-term trend have to be scaled using MinMaxScaler to prevent the zeroes representing matches without the respective team from influencing its scale. All other numerical features are normalized using StandardScaler.

Model Selection and Workflow Implementation

To identify the most effective models for predicting football outcomes, I began with a broad selection of machine learning models. Adopting a "black box" approach, I explored various models to understand their strengths and weaknesses in handling the data. For each model, I used the classification version to predict match outcomes and the regression version to predict the number of goals scored by both teams. The models I tested included:

  • Random Forest
  • Gradient Boosting
  • Extreme Gradient Boosting (XGBoost)
  • Support Vector Machine (SVM)
  • K-Nearest Neighbors
  • Extra Trees
  • Adaptive Boosting (AdaBoost)
  • Light Gradient Boosting Machine (LightGBM)
  • Categorical Boosting (CatBoost)
  • Linear Regression

I first set a seed (my former shirt number, nine) for reproducibility. Defining labels and targets and model building involved several key steps, which all included comparing model performances using cross-validation:

  1. Evaluating baseline models: All mentioned models were instantiated, fitted and evaluated using Cross-Validation.
  2. Hyperparameter tuning: This step involved optimizing each model's parameters to enhance their performance. By fine-tuning these parameters, the models could better adapt to the data and make more accurate predictions.
  3. Recursive feature selection: Recursive feature selection was employed to identify the most relevant features. This technique helped narrow the features to the most significant impact on the predictions, improving the models' efficiency and accuracy. However, some of the labels’ predictions were better using all features; if so, I used the version with all features.

Ultimately, I selected the best-performing models based on their precision in predicting match outcomes (win/loss) and Root Mean Squared Error (RMSE) in predicting the number of goals.

I chose two models for match outcomes: one for predicting wins and losses, and another specifically for draws. This distinction was necessary because the patterns and factors influencing draws differ significantly from those affecting wins and losses. To ensure the final probabilities for all three outcomes (win, draw, loss) add up to 100%, the model application results were later normalized.

Model Application

Using the chosen models with their selected hyperparameters and features, I predict all labels for every row. Since there are two rows for every match to be predicted, we get two probabilities for every match outcome and two float numbers as predicted goals for each team.

These values should not differ too much from each other, and in most cases, they do not—if they do, however, we flag the match to signify the prediction must be considered with some grain of salt. To reduce them to one value for each label only, I take the average of both predicted values.

For match outcomes, I normalized the probabilities of win, draw, and loss to ensure they summed to 100%. I also created additional columns to capture popular betting options like "double chance." Based on the float number of predicted goals per team, I instantiate a Poisson distribution and derive probabilities for each number of goals for each team and for whether the sum of all match goals is over or under 1.5, 2.5, 3.5, 4.5, and 5.5, which are quite popular to bet on.

For my tipping predictions, I chose the outcome with the highest probability. If the winning probabilities for both teams were within 0.05 of each other, I interpreted this as a draw. For goal predictions, I selected the most likely number of goals for each team, adjusting the numbers as needed to ensure they aligned with the predicted outcome.

To predict future EURO matches, I updated the raw match data with the initial predicted outcomes. By incorporating these predictions into the dataset and re-applying feature engineering, I could then predict the next round of matches based on the evolving tournament landscape.

Measuring Model Performance: Accuracy vs. Precision

Understanding the difference between accuracy and precision is crucial in the context of football predictions, particularly when considering the application of these predictions. Using betting versus tipping as an example can illustrate the importance of these metrics:

In sports betting

The goal is to find bets where the expected return is positive. This means that you need to identify likely outcomes and consider the odds bookmakers offer to find value bets.

Precision is crucial here, as it focuses on the correctness of positive predictions (e.g., predicting a win). High precision helps in consistently identifying undervalued bets by bookmakers, directly affecting profitability.

Please keep in mind that betting companies have whole teams to build and maintain very sophisticated predictive models that will likely beat a simpler one like mine in most cases.

In a tipping competition

The objective is to guess the result of each match accurately. Participants earn points for each correct prediction, with the goal of accumulating the most points over a series of matches. Overall accuracy is more important in this scenario because it measures how often your predictions are correct, impacting your total score.

The prediction of draws is another perfect example of the possible discrepancy between the two measurements. Only about 20% of the matches in the training data ended in a draw, leading most models to underestimate the chance of a draw and sometimes even never predict one.

This leads to a high accuracy rate of about 80% since all the non-draws are labeled correctly, but a precision of 0 for draws because none of the draws was predicted as such.

Model Performance Results

The performance of the models varied based on the type of prediction:

  • Outcome Predictions
    • CatBoost and AdaBoost: These models were the best for predicting win/loss outcomes, achieving a maximum accuracy of 72% and a precision of 70%.
    • SVC for Draws: This model reached an accuracy of 79% and a precision of 47%, which is far from optimal but a significant improvement starting from zero.
  • Goals Predictions
    • CatBoost and Gradient Boosting: These models performed best for predicting goals, with a minimum RMSE of 1.19 goals and a maximum R2 score of 0.23. Although these scores indicate a huge room for improvement, they provided a solid foundation for goal predictions.

Since different models are used, there are cases in which outcome and goal predictions do not match. Although it’s hard to compare categorical and numerical scores, I think it is fair to say that outcome predictions generally work better than those for goals, which is why the latter gets adjusted to the former in case of a mismatch.

Distribution of Goals in All Played Matches

Distribution of Goals in All Played Matches

It is notable that the model exclusively resorts to scores of zero, one, and two as the most likely goal number for any team in any match. Given the overall goal distribution in the testing data, this comes as no surprise, but it must be kept in mind that the model will never expect a match with many goals as the likely result.

Predictions in Action: EURO 2024 Forecasts

Applying the models to the first EURO matches generated interesting results!

Group stage

In three-quarters of cases, the model predicted the winner to be the favored team, while for the remaining quarter, the predicted outcome did not reflect the bookmakers’ favorites.

At first glance, this ratio seemed like a good bet, as it’s fair to assume that there are a certain number of surprising results. But now it gets to the tricky part, which is a general question in football predictions, regardless of whether you use your gut or a machine learning model: When does it make sense to bet on the underdog?

One strategy to deal with this is to only and always bet on the favorite. This means you will get a share of surprises wrong, but overall, your accuracy will be quite good. Trying to guess the unexpected results, too, is the only chance to optimize the accuracy of your bets, but it is obviously the more difficult and risky strategy.

Assuming the ratio of surprises is roughly constant, every mistake counts double—for every guessed surprise that did not come true, you are missing one by betting on the favorite.

I chose the riskier approach, but it has not reaped big benefits so far. My model was quite unlucky regarding possible surprises, leading to a rather disappointing accuracy of 50% for the first matchday.

For instance, the model predicted that Serbia and Georgia, the two underdogs, would draw against England and, respectively, win against Turkey. However, the favorites won in both cases. On the other hand, the model did not predict actual surprises like Slovakia's victory against Belgium, Romania's stunning 3:0 win against Ukraine, and Denmark's draw with Slovenia.

The following predictions were made after the second matchday, with one group match left for each team. The most surprising result is the one for the most interesting group, even in group E, where all teams share the same number of points (3) with one match to go.

Using the model, Slovakia is predicted to win the group after a 1:0 victory over Romania since they won against Belgium. Thus, Slovakia would relegate the big group favorite to second place. The model even forecasts Slovakia to be the tournament’s biggest surprise, predicting them to win against Austria and proceed into the quarterfinals.

Knockout stages

The prediction for the entire tournament course was particularly challenging due to the format, where the best third-placed teams also qualify for the knockout stage. This introduced various possible matchups, adding further complexity depending on which groups the four best third-placed teams originate. So, take the following predictions with a grain of salt—the matchups might change completely, even if one team’s goal difference changes by only one goal.

The K.O. matches are generally predicted to be very tight, with a Spanish 2:0 victory in their possible 1/8 final match against Romania as the only one with an expected goal difference larger than one.

The Italian matches push the closeness to the extreme, with draws being the predicted outcomes for their first two K.O. matches. As penalty shootouts are rare and there isn’t sufficient data to predict their winners, I resorted to my memories of the good Italian penalty track record and expected Italy to win both penalty shootouts against Switzerland and England.

In the end, the model predicts Spain, Portugal, the Netherlands, and Italy to reach the semi-finals.

The Netherlands and Spain make up my predicted final, just like in 2010—might it be that history repeats itself?

Key Learnings

This project provided several key learnings:

  • Predicting football results is challenging but fun: The high path dependency of football matches combined with the strong impact of small situational events make football predictions difficult but engaging.
  • Workflow is crucial: It is essential to have a well-structured workflow from the beginning. Planning the data flow and workbook structure can save time and lead to cleaner, more readable code. This approach also simplifies troubleshooting and enhances the project's overall quality.

To improve the predictions and expand the project's scope, several steps can be taken:

  1. More data: Incorporating more matches can help recognize patterns between different features, enhancing the model's accuracy. A larger dataset will provide a more comprehensive foundation for the predictive models.
  2. Additional features: Adding new features can provide more insights:
    • Experience: Including the average number of international matches per squad player can indicate the team's experience level.
    • Pre-match odds: Reflecting the favorite status before the game by scraping data from bookmaker websites can add valuable context to the predictions. However, there are some limitations to this, as the betting quotas change quite frequently. For a simple analysis of who the favorite and underdog are, though, it should suffice.
  3. Extended approach:
    • In-game data: Including real-time match statistics can improve prediction precision. Metrics such as possession percentage, pass accuracy, and player movement can offer deeper insights during the match.
    • Player Data: Detailed player-specific information, including individual performance metrics and fitness levels, can provide deeper insights into match outcomes.

For more detailed information and code, please visit the project notebook.

Conclusion

This blog post offers an overview of the challenges and methodologies involved in predicting football outcomes, highlighting the journey and learnings from the EURO 2024 prediction project.

Integrating data science and sports analytics provides exciting opportunities for enthusiasts and professionals in the field. As the project continues to evolve, the goal remains to refine the models and expand their application to other tournaments, contributing to the growing field of sports analytics.

If you want to learn more about sports analytics, here are some resources you can try:


Photo of Tom Farnschläder
Author
Tom Farnschläder

After building a solid base in economics, law, and accounting in my dual studies at the regional financial administration, I first got into contact with statistics in my social sciences studies and work as tutor. Performing quantitative empirical analyses, I discovered a passion that led me to continue my journey further into the beautiful field of data science and learn analytics tools such as R, SQL, and Python. Currently, I am enhancing my practical skills at Deutsche Telekom, where I am able to receive lots of hands-on experience in coding data paths to import, process, and analyze data using Python.

Topics

Learn machine learning with these courses!

course

Understanding Machine Learning

2 hours
195.2K
An introduction to machine learning with no coding involved.
See DetailsRight Arrow
Start Course
See MoreRight Arrow
Related

blog

Predicting FIFA World Cup Qatar 2022 Winners

Learn to use Elo ratings to quantify national soccer team performance, and see how the model can be used to predict the winner of FIFA World Cup Qatar 2022.
Arne Warnke's photo

Arne Warnke

7 min

DC Data in Soccer Infographic.png

blog

How Data Science is Changing Soccer

With the Fifa 2022 World Cup upon us, learn about the most widely used data science use-cases in soccer.
Richie Cotton's photo

Richie Cotton

3 min

blog

Sports Analytics: How Different Sports Use Data Analytics

Discover how sports analytics works and how different sports use data to provide meaningful insights. Plus, discover what it takes to become a sports data analyst.
Kurtis Pykes 's photo

Kurtis Pykes

13 min

tutorial

Scikit-Learn Tutorial: Baseball Analytics Pt 1

A scikit-learn tutorial to predicting MLB wins per season by modeling data to KMeans clustering model and linear regression models.
Daniel Poston's photo

Daniel Poston

17 min

tutorial

Scikit-Learn Tutorial: Baseball Analytics Pt 2

A Scikit-Learn tutorial to using logistic regression and random forest models to predict which baseball players will be voted into the Hall of Fame
Daniel Poston's photo

Daniel Poston

32 min

code-along

Exploring World Cup Data in Power BI

We'll use custom visualizations for data analysis and DAX for data manipulation
Jess Ahmet's photo

Jess Ahmet

See MoreSee More