Okay, so today I’m gonna walk you through how I tackled figuring out the Atlanta Falcons’ playoff chances. It was a bit of a rabbit hole, but hey, that’s what makes it fun, right?

It all started with me just wondering, like, “Man, are the Falcons even gonna make the playoffs this year?” So, naturally, I started Googling. Found a bunch of articles and sites with probabilities, but I wanted to see how they got those numbers. I’m a hands-on kinda guy.
First things first: data. I needed a season schedule and historical data. I scraped the Falcons’ schedule from ESPN. It was messy, but BeautifulSoup in Python made it manageable. Then, I grabbed historical game results (wins, losses, scores) from some sports data API. There are tons out there, some free, some not. I used a free one for this just to keep it simple.
Next up, I dove into figuring out how to simulate the rest of the season. The core idea is to play out each of the remaining games thousands of times, and see how often the Falcons win enough to make the playoffs. That’s the Monte Carlo method, if you wanna get fancy.
The simulation itself went something like this:
- For each remaining game, I needed a probability of the Falcons winning. This is where it got a bit tricky. I couldn’t just use their overall win percentage. I needed to account for the opponent and home-field advantage.
- I ended up using a simple Elo rating system. It’s a way to rank teams based on their performance, and you can use the rating difference to estimate the win probability. I started with initial Elo ratings for each team based on last year’s results and then updated them after each simulated game.
- So, for each game, I calculated the Falcons’ win probability based on their Elo rating vs. their opponent’s, adjusted for home-field advantage. Then, I generated a random number. If the random number was less than the win probability, the Falcons won that simulated game.
- I repeated this for all the remaining games on their schedule.
- After simulating the whole season once, I checked if the Falcons made the playoffs. This depends on their record and how the other teams in their division and conference did. I had to hardcode the playoff rules a bit, which was tedious but necessary.
- Then, I repeated the whole thing 10,000 times (or more! The more, the better the accuracy).
Once I ran the simulation, I had a count of how many times the Falcons made the playoffs out of all the simulations. Divide that by the total number of simulations, and boom, you’ve got their playoff probability.

Of course, there were a ton of little details and adjustments along the way. I messed with the Elo rating system parameters, the home-field advantage adjustment, and the playoff tiebreaker rules to see how sensitive the results were. Also, injuries aren’t factored in, which is a HUGE simplification, but hey, it’s a personal project.
Here’s what I learned:
- Data cleaning is always a pain, no matter how small the project.
- Monte Carlo simulations are powerful but require a lot of computational power.
- Even a simple Elo rating system can give you surprisingly reasonable win probabilities.
- Figuring out playoff tiebreakers is surprisingly complicated.
In the end, I got a playoff probability for the Falcons. Was it perfectly accurate? Probably not. But it was a fun exercise in data analysis and simulation. And more importantly, I understood how the number was generated, rather than just blindly trusting some website.
And that, my friends, is how I spent an afternoon diving into the world of NFL playoff probabilities. Worth it!