POSTS
No Air, No Problem
If I were to ask which types of throws Pat Mahomes was the best at in 2018, many would say the deep ball…or the no-look pass…or the left-handed pass…or any other ridiculous pass he made. Not many would think it was the short pass. Actually the shortest pass of all. The Chiefs were by far and away the best team when it came to passes at or behind the line of scrimmage. These passes typically includes RB/WR screens, swing passes, check downs, etc. Not much arm strength required, but one of the strongest-armed players in the league lead the NFL in in Expected Points Added (EPA) on these throws. Why?
Andy Reid. These are not highly effective plays, but the Chief’s system and design is what made these plays successful (with a little help of play makers like Tyreek Hill, Travis Kelce and Kareem Hunt.) This is not a knock on Mahomes, the guy can do things most QBs only dream of, but when almost 1000 of his pass yards are passes that didn’t cross the LOS, there is something else to be said. I mean, just look at the image above, Mahomes is in a league of his own.
What makes the Chiefs so good at these short passes? Not having lived in the Midwest, nor access to many Chiefs games, I cannot say for certain but looking at the EPA of who is catching the ball, I’d guess it has a lot to do with Hunt and getting the ball to the RBs. (sidebar - let me know if anyone want to provide me their All-22 access so I can get actual plays snip-its in here. I’ll trade ya my ex-roommates Netflix login.) You really see the true impact Hunt had as a receiver. This obviously doesn’t include him running routes down field, but the Chiefs seemed very determined to get him the ball in space. Whether the bulk of these are quick swing routes, check downs or well designed, perfectly timed screens, I do not know. That is for another post at another time.
This also isn’t a one time thing for an Andy Reid led offense. 2017 Chiefs, with Alex Smith and a touch of Mahomes, saw the highest total EPA and just barely fell to second in EPA per drop back. In 2016, KC was 4th in both total EPA and EPA per drop back.
Looking forward, I’d predict a strong decline in these numbers with Hunt gone, Hill uncertain and an overall regression towards the mean. But then again, if that means more miraculous down field plays from Mahomes, I am all for it.
R code below using NFLScrapR
#Filter plays to only passes that are at or behind the Line of Scrimmage
pass_length <- pbp_2018 %>%
filter(PlayType == "Pass" | PlayType == "Sack") %>%
filter(!is.na(Passer) & AirYards <=0) %>%
group_by(Passer) %>%
summarise(Attempts = n(), total_yds = sum(Yards.Gained), avg_yds_play = mean(Yards.Gained), Total_EPA = sum(EPA, na.rm = TRUE), EPA_per_Att = mean(EPA, na.rm = TRUE)) %>%
filter(Attempts > 50)
pass_length_rec <- pbp_2018 %>%
filter(PlayType == "Pass" | PlayType == "Sack") %>%
filter(!is.na(Passer) & !is.na(Receiver) & AirYards <=0) %>%
filter(posteam == "KC") %>%
group_by(Receiver) %>%
summarise(Attempts = n(), total_yds = sum(Yards.Gained), avg_yds_play = mean(Yards.Gained), Total_EPA = sum(EPA, na.rm = TRUE), EPA_per_Att = mean(EPA, na.rm = TRUE))