The Tigers are having a good season - they’re 60-43 with 97% odds of reaching the postseason. But they’ve had a rough stretch - they’re current 1-9 in their last 10 games, including a 6 game losing streak. While I’m very certain they’ll play better than 0.100 ball the rest of the season, it does beg the question of how common this sort of stretch is for winning teams.
To answer this, I downloaded daily game data for each team from 2004 - 2024, using the baseballr package. This gets data from baseball-reference the conviently includes streak length data, which saves some time calcing that ourselves in R. I’d have gotten more seasons, but getting the data is a bit of a pain and 20 years should suffice, especially since we’re more interested in recent history.
First, let’s look at each team’s longest losing streak and plot their win percentage.
This is perhaps the world’s least surprising chart - of course bad teams are going to have longer losing streaks. If they were shorter, they’d be better teams. There’s still a bit of a spread, though - teams whose longest streak was 6 can be as low as 0.365 (the 2024 Rockies) and as high as 0.654 (the 2019 Dodgers). The mean and median are both just a hair over .500. It would take a catastrophe for the Tigers to be the bad.
But as the current stretch shows, longest losing streak isn’t necessarily the whole story. Being 1-9 is brutal, but there is a win in there. We can look at a team’s worst 10-game streak and compare to their final win percentage to check that angle.
Show the code
team_seasons_agg %>%ggplot(aes(x =as.factor(worst_ten_game_win_per), y = win_percent))+geom_point()+geom_boxplot(outlier.shape =NA)+theme_ipsum()+xlab('Worst Ten-Game Streak')+ylab('Win Percent')+ggtitle("Better Teams Avoid Long Losing Streaks",subtitle ="But good teams hit them, too")
The 2017 Dodgers had an 11 game losing streak and finished with a 0.642 win percentage. We see plenty of teams with pretty bad streaks finishing above .500, though the more you limit this the better - all teams who managed to go no worse than 0.400 in a 10-game stretch finished above .500. Let’s look a little closer as the summary stats.
Since the Tigers are in the 0.100 bucket right now, we’re most interested* in that. 67 of the 222 teams who had a 1-10 stretch finished above .500, with the 2016 Cubs having one such stretch and finishing with a .636 win percent and winning the World Series. While this doesn’t mean the 2025 Tigers are guaranteed the same results, in assuring to see that teams can go all the way even with bad stretches like this. I’m naturally concerned, but trusting the team’s talent and a regression bounceback for the remainder of the season.
*Well, I’m most interested, anyway. You may be more interested in other things, and that’s fine. You’re an adult.