The San Francisco Giants and San Diego Padres split their four-game series last week, with each team winning two games by one run. In our #social-baseball slack channel, my coworker asked:
any data whizzes wanna figure out how many MLB 4 game series have ended 2-2 with all one-run games?
I put myself on the case.
I had no clean way to run a single query that pulled these because Stathead does not allow “OR” qualifiers in their search. So, this took slightly more manual work. This is what we do in the quest for knowledge.
This Stathead query contains the longest streaks of at least four regular season games such that every game’s run differential was between -1 and 1. I was only interested in streaks of exactly four games, so I went straight there.
I then sorted each page by total streak run differential, which is necessarily zero when both teams win two games in the series. Sorting by streak end date, I was able to peruse each page for consecutive rows with matching start and end dates—if the home team had one of these streaks, so did the visiting team.1There is a slight issue with this approach: what if one team had a streak of 4 games, but the other team had a streak of 5 or more because they had the necessary run differential before or after the four-game series? I only realized this problem while writing this post, but I’m too far into it to fix it this moment. I then manually checked that there wasn’t a coincidence in the matching dates, and also confirmed for older dates that it wasn’t part of a five-game series.
All that led to a list of the following four-game series2Again, I’m probably missing some because of the issue I pointed out above. I’ll try to fix that at a later point. where the teams each won two games, and all four games were won by exactly one run.
Home | Visitor | Start Date | End Date |
SFG | SDP | 2025-06-02 | 2025-06-05 |
CHC | HOU | 1995-09-28 | 1995-10-01 |
BAL | CLE | 1991-09-12 | 1991-09-15 |
LAD | SDP | 1986-04-07 | 1986-04-10 |
NYY | BAL | 1979-08-03 | 1979-08-06 |
MIL | WSA | 1971-07-30 | 1971-08-01 (2) |
SDP | NYM | 1970-05-01 | 1970-05-03 (2) |
HOU | CHC | 1962-08-17 | 1962-08-19 |
PHI | STL | 1961-08-29 (1) | 1961-08-31 |
NYY | DET | 1957-07-26 | 1957-07-28 (2) |
CLE | BOS | 1938-09-15 (1) | 1938-09-17 |
STL | BSN | 1929-06-14 | 1929-06-16 (2) |
BOS | CHW | 1920-05-15 | 1920-05-19 |
BRO | PHI | 1904-06-21 | 1904-06-24 |
- 1There is a slight issue with this approach: what if one team had a streak of 4 games, but the other team had a streak of 5 or more because they had the necessary run differential before or after the four-game series? I only realized this problem while writing this post, but I’m too far into it to fix it this moment.
- 2Again, I’m probably missing some because of the issue I pointed out above. I’ll try to fix that at a later point.