Monthly Archives: February, 2023

Situational Runner Advancement

Introduction

I was recently reflecting on the rule changes for the upcoming 2023 MLB season. One rule that they will keep is the so-called zombie runner rule introduced in the shortened 2020 season where each half-inning in extra innings starts with a runner on 2nd base. Of course when one has a runner on 2nd with no outs, a team wants to advance this runner to third and eventually to home.

That made me think more generally about runner advancement in baseball and specifically, how runners advance with a single. For example, suppose there is a sole runner on 1st base. With a single hit to the outfield, the runner can go to second or take the extra base and reach third. That raises several questions.

  • How likely is it for a runner to take the extra base, and how has the chance of this outcome changed in recent seasons of baseball?
  • Also, the chance of taking this extra base might depend on other variables such as the number of outs, the closeness of the score and the direction of the base hits. How does the chance of taking the extra base depend on these variables?

In this post, I’ll look at 20-seasons of baseball from 2000 through 2019 and see how the chance of taking the extra base has changed over this period. I focus on the runner advancement on an outfield single in three runner situations:

  • runner on 1st (100)
  • runner on 2nd (020)
  • runners on 1st and 2nd (120)

I will display graphs that show how the chance of taking an extra base changes over the period 2000 through 2019 and how it changes with respect to various situations.

Situations Influencing Runner Advancement

One can imagine a number of different variables that influence the chance of a runner or runners taking extra bases, but I will focus on the following variables.

  • Home/away. Perhaps it is more likely for the home team (compared with the visiting team) to take the extra base on a single.
  • Late inning. In the 8th inning or later, perhaps a team will be more aggressive and take the extra base.
  • Close. In a game where the score is close (where the margin of lead is 0 or 1 runs), perhaps a team will be more aggressive in runner advancement.
  • Close and Late. Here we combine the last two variables focusing on late-inning situations where the game is close.
  • Outs. Perhaps a runner will be more aggressive (take an extra base) when there are 2 outs, compared to 0 or 1 outs
  • Outfield. The chance of taking an extra base may depend on the direction of the outfield single (left field, center field or right right). For example, we are familiar with the situation where the runner on 1st moves to 3rd on a base hit to right field.

Advancing a Runner on 1st

I wrote a Shiny app where one selects the runners situation (either 100, 020 or 120) and the particular situation of interest among the six situations listed above. First I consider a runner on 1st (100) and the home/away situation. The below graph displays the percentage of runners successively taking the extra base (code 1-3) on an outfield single among all opportunities for home and away teams across the 20 seasons. The points are color coded by the value of the situation, here home or visiting runner. There is much variability in these percentages so the pattern across seasons is not clear. But it appears that it is generally more likely for a home runner than the visitor runner to take the extra base.

Here is another situation, close/not-close games, where the situational pattern is clear. It is more likely to take the extra-base (runner moving from 1st to 3rd) when the current score margin is one run or less.

Does the number of outs matter? Below I display the chance of taking an extra base for 0, 1, and 2 outs. We see several interesting things. First, it is generally more likely to take the extra base with 2 outs. Second, the probability of taking the extra bases with 2 outs has been increasing in recent seasons.

It is not surprising that the chance of taking the extra base is dependent on the location of the single. It is easiest (highest probability) to take the extra base for a single to right field (S9), followed by a single to center field (S8), and a single to left field (S7).

Advancing a Runner on 2nd

Here are several interesting graphs when we explore runner advancement for a sole runner on 2nd with a single to the outfield. Below we see that it is more likely to score (2-H) when the game is close (margin within one run) and late (inning 8 or later).

With respect to direction of the hit, it is most likely for this runner on 2nd to score when the hit is in center field, followed by a hit to right field and a hit to left field.

Advancing Runners on 1st and 2nd

Last we consider the advancement of runners on 1st and 2nd (120) when there is an outfield single. Below we show the chance that both runners advance extra bases (codes 1-3, 2-H) for each situation. The first graph shows that when games are close, it is more likely for both runners to take the extra base. These extra base probabilities are increasing in recent seasons.

With respect to the direction of the single, it is most likely for both runners to take the extra base when the ball is hit to right field, followed by center field and left field.

Other Relevant Situational Variables

These graphs don’t reflect much of a change in these extra base probabilities across these 20 seasons. But it is obvious that variables like the direction of the single, number of outs and the current game score are relevant variables that influence these probabilities. The third base coach who provides guidance on taking the extra bases likely is familiar with these situational effects. For example, this coach may have a strategy to be more aggressive in base running decisions in close and late game situations and when there are two outs.

From the viewpoint of the third-base coach, there are likely additional relevant variables that guide his decision on whether to signal the runner to take the extra base. These relevant variables include …

  • the speeds of the runners on base
  • the fielding and throwing ability of the outfielder retrieving the single
  • attributes of the single including its exit velocity, launch angle and where the ball is fielded in the outfield

By using more detailed data such as Statcast, we can look more carefully at these additional variables and see their impact on the chance of a runner successfully taking an extra base.

Data and R Work

For this runner advancement exercise, I collected Retrosheet play-by-play data for the twenty seasons 2000 through 2019. I focused on situations where the current runners situations were either 100, 020, and 120 and a single was hit. One useful Retrosheet variable is EVENT_TX which is a character string giving the direction of the single and all runner advancement on the play. I wrote a Shiny app which displays these “taking the extra base” percentages as a function of the season where different point colors corresponding to the situation of interest. The code for the Shiny app is contained in this single app.R file. To generate these graphs, all one needs is to place the single app.R file into a folder, open the file, and execute the Run App command in RStudio. The Retrosheet dataset for this particular exercise runner_advancement_1.csv is read from one of my Github repositories.