July 20, 2023
Predicting goals scored with Poisson regression in C++
I’ve been interested in the application of statistical learning to football and how the professionals use it in sports betting. I’ve also wanted to get some practice in with C++ and this project kills both birds.
The project is available on GitHub: https://github.com/kelanyll/poisson.
The classic method that beginners are directed to uses Poisson regression to predict goals scored by both teams in a football match.
Libraries for this exist out of the box for most languages known for data analysis like Python and R.
Read more