Introducing Rate of Adjusted Pressure

Introducing Rate of Adjusted Pressure
Introducing Rate of Adjusted Pressure
Photo: USA Today Sports Images

Guest column by Ajit Kirpekar

There are few statistics more hallowed within NFL circles than the sack. Like touchdown passes, sacks are one of the NFL's sacred cows and often the go-to barometer for Pro Bowl teams, All-Pro votes, and likely even contract extensions. If you've been a fan of football as long as I have, you have probably heard of, and are no doubt a fan of, the recently passed Paul "Dr. Z" Zimmerman, one of football's most prodigious writers. The inspiration for this article comes from one of his All-Pro articles, where in his inimitable style of humor, he lamented the fact that so many All-Pro teams are filled with yearly sack leaders despite the fact that sacks amount to only a dozen or so plays out of hundreds.

A lot has changed since that article was written. Pressure statistics are now being charted from a variety of places, including here at Football Outsiders. In fact, FO has done a number of terrific articles showing the value of pressures and their quantifiable impact on passing success. Of course, this being Football Outsiders, we know that context plays an important role in every statistic and pressures are no different.

Thanks to the enormous contributions by FO's game charting data (collected first by FO staff and volunteers, then in conjunction with ESPN Stats & Info, and since 2015 by Sports Info Solutions), we have numbers going all the way back to 2006, including the result and documentation of every play. Using this data, I created a Football Outsiders-style opponent adjustment for every team's pressure rate. I'm calling the statistic RAP -- Rate of Adjusted Pressure. At the risk of putting everyone to sleep, I'm going to give a high-level and hopefully intuitive explanation how RAP is derived. This takes place in three parts: defining a set of variables that explain how pressure is generated; coming up with a good model that helps predict pressure; and finally, layering in the opponent adjustment to the final pressure rate of each team in each season. For those who wish to skip this, feel free to scroll to the bottom where I have presented the results.

I started by selecting a set of variables that should predict how pressure is generated. When I say "pressure" here, I really mean all hurries plus sacks and plays with intentional grounding, minus all coverage sacks and "self sacks" where a quarterback slips or just drops the ball without pressure. As it turns out, a lot of the variables involved are pretty intuitive. Down-and-distance, time remaining, location on the field, AGL injury data, home-field advantage, etc., are all influential. After all, as Donovan McNabb famously said, "It's a lot harder to play quarterback when you're on the road, down by six while facing a blitz." And of course, it also matters a lot which opponent or quarterback you are facing. Modeling the latter two, however, is tricky since these are not ordinal values like down-and-distance or time remaining. These are categorical variables -- namely, a list of names of quarterbacks and teams -- and that makes using them more difficult.

The normal statistical approach to categorical variables is to convert them into some kind of numerical format. One way to do this is to literally code each name in the list in terms of 0s and 1s -- i.e., did you face Team X and Quarterback Y on this play? If so, then it's a 1 for both; if not, it's 0 for both, or some combination of the two. This method works, but has its own drawbacks which I won't go into here. Suffice to say, whenever possible, it's better to find a numerical representation for your categories than it is to just create a mass of 0s and 1s. For the list of quarterbacks, this was unavoidable. For teams, however, I could use some kind of number that quantifies how good or bad a particular offense or defense was. Pressure rate has an effect on DVOA, which means if I used DVOA to measure team quality, I would be committing a statistical sin of mixing the right-hand and left-hand variables in my model. Instead, I had to develop an alternative rating system, which I did with Las Vegas expected point spreads and expected point totals for each game. Using an Elo-style rating system, every team received an opponent-adjusted rating value for their offense and defense. Not perfect, sure, but the results were good enough to use and happily correlated well with DVOA.

Next, I had to go about about picking the right model. I'll again spare you a lot of the sausage-making process, but suffice to say I approached this problem in the same way I approach my own problems at work: start simple and add complexity as is needed. I tried several models but ultimately settled on a multilayered deep learning model. For those unfamiliar with neural networks, let me try, with trepidation, to give an intuitive explanation.

Think of a simple regression model -- one where we try to predict Y from X. The W1 here refers to how much a change in X results in a change in Y. X could be any relevant variable we think predicts pressure.

Y = W1*X

Now, suppose we did some non-linear operation on W1*X, called f(x). What f(x) looks like is not important here, just that it performs some kind of non-linear operation. Now, we say Y relates to X via the following equation:

Y = f(W1*X)

Now suppose we do a second non-linear operation, call it g(x) on f(x). Then we get:

Y = g(W2*f(W1*X))

And what if we repeat this again with h(x):

Y = h(W3*g(W2*f(W1*X)))

Below is a simple drawing of a neural network. Here, the word "hidden" refers to each layer of the non-linear operators and the "act()" refers to the nonlinear function being used.

In the above example, all of the Ws interact with each set of non-linear operations which ultimately begin with our first input X. By doing this chain of operations, we can extend our original linear regression into a non-linear model that can capture more interesting dynamics of X onto Y. Of course, we don't need to be limited to three nonlinear layers. We can add as many as we want. In fact, the more you add, the more nonlinear interaction the model expects from the data. Furthermore, not only can we add additional layers, we can also add more weights in each layer. In doing so, the drawing above (which depicted only one set of weights) becomes a more complex structure. See the drawing below.

Why, you may ask, is all of this needed? Well, sometimes relationships aren't so easily captured in a linear model. A good example would be something like how distance influences pressure. Rivers McCown had a great article on how longer distance to go for a first down usually means higher pressure, but too far a distance and you are more likely to see a screen pass or a quick hitch to specifically avoid pressure. The sign of the relationship flips! This is an example where a linear model struggles since the effect of a distance increasing or decreasing is the same regardless of what the distance is -- i.e., a distance going from 0 to 10 has the same effect as the distance going from 30 to 40. Machine learning algorithms are there precisely to capture these nuanced effects.

The final component involves opponent adjustments. In order to get a sense of how this was accomplished, we need to think about what we're really trying to account for with opponent adjustments. Let's imagine, for example, Defense X achieves a 20 percent pressure rate for the year. We know that said defense played a certain schedule, either a difficult one or a relatively easy one, but one that is unlikely to be exactly average. What we want to know is, if we took the same set of circumstances but forced Defense X to play an average schedule, what would their pressure rate look like?

Our model allows us to do precisely this. We first run Defense X through their actual schedule along with all of the other variables observed in our model. Their expected pressure rate is 25 percent. Here, I emphasize "expected pressure." This is what our model expected the team to achieve. It's predicting 25 percent, while the team achieved only 20 percent. Why is there a discrepancy? Well, the extra 5 percent could have been bad luck or something deeper we are missing, but no matter, this is what our model expected Defense X to get given everything we've observed. Now, let's run Defense X through our model a second time, only now, we replace their schedule with a league-average one. Now every week they are facing the same average offensive opponent rating and the same average quarterback. Now, our model predicts Defense X should have a pressure rate of 30 percent.

Think about what this means. The first model run-through predicted 25 percent. The second model predicted 30 percent. Again, a 5 percent difference, but a 5 percent difference coming entirely from schedule. And it has to be entirely from schedule, because all of the rest of our variables are unchanged. What does this imply? That facing an average schedule, Defense X should have achieved 30 percent pressure, but given the schedule they actually faced, Defense X should achieve only 25 percent pressure. In other words, Defense X had a schedule that was harder than an average schedule, and that was why the prediction was 5 percent less.

Confused? OK, let's try another example. Say Offense Y had a pressure rate of 25 percent and just happened to face an average schedule. Let's say their expected pressure rate with their actual schedule was 20 percent. Then when we re-run the model with an average opponent -- the result will be 20 percent. No change. Why? Because Offense Y's opponents were average.

What if they faced a difficult schedule? Now their expected pressure rate would be something like 25 percent -- i.e., expected to yield 5 percent more pressure per pass due entirely to the harder schedule. What if it were easier? Then the expected pressure rate would be something like 15 percent, or 5 percent fewer pressures per pass.

In all cases, the delta, or opponent adjustment, is coming from the difference between the model's expected pressure rate and the model average opponent pressure rate. After we calculate this delta, we add it (or subtract it) to their overall pressure rate, and that becomes their RAP.

Below is a chart to make things clearer:

Offense A Actual
Pressure Rate
Predicted Pressure
(average schedule)
Predicted
Pressure
Delta Rate of Adjusted
Pressure (RAP)
Case 1: Hard Schedule 15% 20% 25% -5% 10%
Case 2: Average Schedule 15% 20% 20% 0% 15%
Case 3: Easy Schedule 15% 20% 15% 5% 20%

RAP = Actual Pressure Rate + Delta

And voila -- we have our opponent-adjusted pressure rate.

Two final notes: in much the same spirit of DVOA, RAP is also normalized by year to provide a clearer year-to-year comparison. This was done by normalizing such that each season had the same average pressure rate. In the tables below, you will see the normal pressure rate and then year-adjusted pressure rate alongside. There have been higher raw pressure rates in recent seasons, and it can be tough to tell whether this is related to real increased pressure or changes in charting baselines.

In addition, when it came to adjusting a team by schedule, this was done strictly via opponent rating and quarterback only. I thought about adjusting for weather and stadium effects, but decided against it for this particular iteration.

Here are the results. We'll begin with the best offenses at preventing pressure.

Best Offenses at Preventing Pressure, 2006-2017
Offense Year Quarterback Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
DEN 2014 P.Manning 14.0% 14.0% 14.0% 0.0%
DEN 2013 P.Manning 15.7% 15.4% 14.9% 0.4%
IND 2010 P.Manning 14.2% 15.1% 15.1% 0.0%
NO 2017 D.Brees 22.7% 17.6% 15.2% 2.4%
OAK 2017 D.Carr 25.3% 20.2% 16.9% 3.3%
TEN 2011 M.Hasselbeck 17.4% 18.3% 17.6% 0.6%
NYG 2010 E.Manning 19.1% 20.0% 17.7% 2.3%
PIT 2016 B.Roethlisberger 20.0% 19.4% 18.2% 1.2%
DEN 2012 P.Manning 14.7% 18.3% 18.3% 0.0%
PIT 2017 B.Roethlisberger 24.3% 19.2% 18.8% 0.5%
IND 2009 P.Manning 19.8% 18.8% 18.8% 0.0%
TEN 2010 K.Collins 18.7% 19.6% 19.0% 0.5%
CIN 2013 A.Dalton 20.1% 19.7% 19.4% 0.3%
NYG 2017 E.Manning 27.5% 22.4% 19.5% 2.9%
NE 2013 T.Brady 21.7% 21.3% 19.8% 1.5%

Five of the top 15 teams in offensive RAP, including each of the top three, are helmed by Peyton Manning, a familiar name to everyone reading this. With some exceptions, most of the top finishing teams are helmed by traditional pocket passers. This is pretty consistent with view that sacks, along with the pressures, say as much or more about the quarterback as they do about the offensive line.

And now the worst offenses at preventing pressure:

Worst Offenses at Preventing Pressure, 2006-2017
Offense Year Quarterback Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
SEA 2014 R.Wilson 45.2% 45.1% 49.2% -4.1%
SEA 2013 R.Wilson 42.8% 42.5% 46.5% -4.0%
PIT 2007 B.Roethlisberger 36.3% 43.4% 42.4% 1.0%
OAK 2009 J.Russell 38.8% 37.7% 41.3% -3.6%
MIN 2014 T.Bridgewater 35.1% 35.0% 40.2% -5.2%
SEA 2012 R.Wilson 35.7% 39.3% 39.7% -0.4%
STL 2014 A.Davis 33.6% 33.6% 39.0% -5.5%
PHI 2012 M.Vick 34.0% 37.6% 38.8% -1.2%
TB 2014 J.McCown 37.3% 37.3% 38.3% -1.1%
SF 2014 C.Kaepernick 35.2% 35.1% 38.3% -3.2%
SF 2008 S.Hill 30.6% 38.6% 38.2% 0.5%
MIN 2007 T.Jackson 30.0% 37.1% 37.9% -0.8%
NYJ 2014 G.Smith 36.4% 36.4% 37.9% -1.5%
MIN 2012 C.Ponder 31.3% 34.9% 37.8% -2.9%
TB 2010 J.Freeman 37.9% 38.8% 37.3% 1.5%

Russell Wilson is a terrific quarterback, but achieving a preposterous near-50 percent RAP is likely a combination of Wilson himself and an atrocious offensive line -- something that should surprise no one. It's also fascinating that the two worst teams in RAP managed to get to the Super Bowl and come within a yard of winning both (though that gets easier to explain in the next table).

The rest of this list feels more like a reflection on line quality than it does the quarterbacks involved as few of these teams, aside from the Seahawks, were helmed by scramble-first players.

And now, the defenses:

Best Defenses at Generating Pressure, 2006-2017
Defense Year Sacks
Leader
Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
SEA 2013 M.Bennett 36.6% 36.5% 39.1% 2.6%
ARI 2016 M.Golden 34.5% 34.0% 38.5% 4.5%
MIA 2016 C.Wake 33.0% 32.4% 38.0% 5.5%
JAX 2017 C.Campbell 38.4% 33.2% 37.2% 4.0%
MIN 2009 J.Allen 37.6% 36.6% 36.9% 0.3%
PHI 2014 C.Barwin 33.2% 33.4% 36.9% 3.6%
DET 2010 N.Suh 34.4% 35.5% 36.7% 1.3%
SF 2011 A.Smith 33.9% 34.9% 36.7% 1.8%
MIN 2008 J.Allen 27.4% 35.4% 36.7% 1.3%
STL 2010 J.Hall 31.2% 32.2% 36.2% 4.0%
OAK 2011 T.Kelly 34.5% 35.5% 36.1% 0.6%
ARI 2012 D.Washington 26.9% 30.6% 35.9% 5.3%
STL 2012 C.Long 27.7% 31.4% 35.7% 4.3%
PHI 2009 T.Cole 36.7% 35.6% 35.6% 0.0%
HOU 2011 C.Barwin 36.7% 37.7% 35.6% -2.1%

The 2013 Seahawks will be remembered for their all-time great secondary, but I wonder how many people knew or appreciated just how dominant their pass rush was. Even just looking at its raw total, that unit was a monster.

One of the more interesting teams on this list is the 2009 Vikings. Despite a terrific pass-rushing unit, their pass defense was ranked 23rd in DVOA. A more extreme example not displayed on this list is the 2010 Houston Texans, ranked 25th in defensive RAP while finishing with one of the all-time worst pass defenses. I guess pass rush can only do but so much.

The worst pass-rushing teams on record:

Worst Defenses at Generating Pressure, 2006-2017
Defense Year Sacks
Leader
Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
IND 2016 E.Walden 21.1% 20.6% 15.4% -5.2%
GB 2011 C.Matthews 19.3% 20.3% 18.8% -1.5%
TB 2009 S.White 25.7% 24.7% 18.9% -5.7%
JAX 2009 J.Henderson 24.1% 23.1% 19.2% -3.9%
BUF 2011 M.Dareus 19.5% 20.5% 19.3% -1.2%
CIN 2014 C.Dunlap 23.3% 23.4% 19.3% -4.1%
BUF 2009 A.Schobel 24.9% 23.8% 19.9% -3.9%
MIA 2017 C.Wake 29.9% 24.7% 19.9% -4.7%
CLE 2014 P.Kruger 24.3% 24.4% 20.0% -4.4%
KC 2010 T.Hali 24.3% 25.3% 20.3% -5.0%
TB 2014 G.McCoy 24.0% 24.1% 20.5% -3.6%
DET 2016 K.Hyder 24.9% 24.4% 20.6% -3.8%
TEN 2011 K.Klug 20.8% 21.8% 20.8% -1.1%
KC 2016 D.Ford 25.7% 25.1% 20.8% -4.3%
NYG 2006 O.Umenyiora 11.9% 20.8% 21.0% 0.2%

A few teams here stick out to me. The 2009 Bills actually had a very good pass defense and yet they finish among the worst teams in defensive RAP. In fact, I've run correlations on pass defense and pass rush before -- both on sack rate and pressure rate. There is a correlation, but it's very slight. Ultimately, I think the relationship between pass rush and pass coverage is still too nuanced to be explained by the pressure statistic.

A rather humorous team of note is the 2006 Giants. In terms of raw pass rush, they were the worst team in the entire list. Team averages and schedule bumped them up some, but still an all-time awful pass-rush unit. Strange, isn't it, given how they won the Super Bowl the next year? In fact, the 2007 Giants finished as the 70th best pass-rushing team -- though the difference between them and the 50th best team is less than 0.2 percent.

Here are the numbers for 2017:

Offenses and Pass Pressure, 2017
Offense Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
NO 22.7% 17.6% 15.2% 2.4%
OAK 25.3% 20.2% 16.9% 3.3%
PIT 24.3% 19.2% 18.8% 0.5%
NYG 27.5% 22.4% 19.5% 2.9%
NE 29.0% 23.9% 21.5% 2.4%
BAL 27.6% 22.5% 22.8% -0.3%
CAR 30.5% 25.4% 23.8% 1.7%
TEN 27.2% 22.1% 24.3% -2.2%
CIN 31.2% 26.1% 26.0% 0.2%
SF 32.9% 27.8% 26.8% 1.0%
DEN 34.0% 28.9% 26.9% 2.0%
CHI 33.2% 28.0% 27.7% 0.4%
MIA 31.4% 26.3% 28.1% -1.8%
NYJ 34.1% 29.0% 28.2% 0.8%
DET 33.3% 28.2% 28.4% -0.1%
KC 33.5% 28.4% 28.6% -0.2%
CLE 35.6% 30.5% 29.0% 1.5%
BUF 37.1% 32.0% 29.1% 2.9%
ATL 33.6% 28.4% 29.1% -0.7%
LAC 33.3% 28.2% 29.5% -1.3%
JAC 34.7% 29.6% 29.9% -0.3%
LAR 32.8% 27.7% 30.3% -2.6%
IND 40.2% 35.1% 30.8% 4.3%
ARI 32.9% 27.8% 31.0% -3.2%
DAL 35.7% 30.6% 32.5% -1.8%
TB 33.0% 27.9% 32.7% -4.8%
WAS 36.4% 31.3% 32.7% -1.4%
MIN 39.5% 34.4% 33.2% 1.1%
PHI 37.6% 32.5% 33.4% -0.9%
HOU 41.1% 36.0% 34.3% 1.7%
GB 39.4% 34.3% 34.4% -0.1%
SEA 42.1% 37.0% 36.7% 0.3%
Defenses and Pass Pressure, 2017
Defense Pressure
Rate
Era Adjusted
Pressure Rate
RAP Difference
JAX 38.4% 33.2% 37.2% 4.0%
TEN 33.6% 28.4% 32.9% 4.4%
CIN 36.4% 31.3% 32.3% 1.0%
WAS 39.4% 34.2% 32.0% -2.2%
PHI 35.4% 30.2% 31.6% 1.4%
CAR 37.2% 32.0% 30.8% -1.2%
DAL 37.1% 32.0% 30.7% -1.2%
MIN 34.1% 28.9% 30.7% 1.7%
LAR 34.8% 29.6% 30.6% 1.0%
PIT 36.9% 31.7% 30.6% -1.2%
DEN 34.9% 29.7% 30.1% 0.4%
IND 34.3% 29.1% 28.4% -0.7%
BAL 31.8% 26.6% 27.6% 0.9%
SEA 34.2% 29.0% 27.3% -1.7%
LAC 33.0% 27.8% 27.2% -0.6%
NE 30.7% 25.6% 27.0% 1.5%
HOU 31.8% 26.6% 26.5% -0.2%
SF 31.4% 26.2% 26.4% 0.2%
ARI 33.1% 27.9% 26.4% -1.5%
CLE 32.1% 26.9% 25.6% -1.3%
ATL 31.7% 26.5% 25.3% -1.2%
NO 34.6% 29.5% 25.3% -4.2%
KC 31.7% 26.5% 24.3% -2.3%
BUF 29.2% 24.1% 23.9% -0.2%
CHI 32.3% 27.2% 23.5% -3.7%
GB 31.1% 25.9% 23.2% -2.7%
NYG 30.9% 25.7% 23.2% -2.5%
DET 31.6% 26.4% 23.2% -3.2%
OAK 29.8% 24.7% 22.4% -2.3%
NYJ 33.0% 27.8% 21.0% -6.8%
TB 27.8% 22.6% 21.0% -1.6%
MIA 29.9% 24.7% 19.9% -4.7%

Ajit Kirpekar is a data scientist based out of San Francisco, CA. Despite this, he roots for the Indianapolis Colts. You can follow him on Twitter @akirp.

Comments

19 comments, Last at 01 Apr 2019, 11:04am

#1 by Aaron Brooks G… // Dec 10, 2018 - 2:40pm

Interesting that Roethlisberger appears on both QB lists.

Points: 0

#3 by drobviousso // Dec 10, 2018 - 5:27pm

Partly the difference in the line, but he's also been a very, very different quarterback as he's gotten older. With Bruce Arians, he was a mad bomber, but he ruined his body that way. Todd Hailey's mandate was to keep him upright, and for all his flaws, he did that pretty well.

Points: 0

#4 by Alex51 // Dec 10, 2018 - 7:13pm

Yeah, the two lists can be summed up, respectively, as:

1) Pro-Bowl pocket passers, and 2) Scramblers and/or Marginal Starters

Roethlisberger used to run around all the time dodging pass rushers (and get sacked a lot in the process), but he's apparently stopped doing that as much late in his career.

Points: 0

#5 by theslothook // Dec 10, 2018 - 9:47pm

In the list of top quarterbacks you also see late-career Matt hasselbeck and Kerry Collins along with aging (aged?) Eli Manning.

Points: 0

#12 by Alex51 // Dec 11, 2018 - 6:56pm

They had declined by that point, but they had all been capable QBs for some time, and presumably still had the mental awareness to recognize pressure and throw the ball away. Declining physical skills make it more difficult to be effective passing down the field, but you hardly have to be a physical specimen to throw the ball out of bounds when someone is closing in on you.

Points: 0

#6 by Bobman // Dec 11, 2018 - 1:20am

I was trying to figure out why Indy sucked so much in the tables above since their OL has done rather well this year,and they have gotten better pressure this year defensively as well... thinking "hey, this is wrong. it's just not right." then I noticed it said 2017 and not this year. Ah, then it's perfectly right. Actually, their D was better at RAP than I had expected last year, but my impression was probably tainted by the "absence of Luck" effect that a lot of 3-and-outs has on a D.
Cool new stat to play with.

Points: 0

#7 by theslothook // Dec 11, 2018 - 1:37am

Full disclosure, the graphs and pictures were taken from this blog - https://ayearofai.com/rohan-lenny-1-neural-networks-the-backpropagation-algorithm-explained-abf4609d4f9d?gi=73400e5153cc

They do a terrific job explaining it in a technical, but still accessible way. Even though I had learned this stuff some time back, they are a great refresher for me.

Points: 0

#8 by Will Allen // Dec 11, 2018 - 7:56am

There's a real problem with schedule adjustment, in that o-line injuries cause gigantic variation in schedule strength, in regards to pressure generation, within a 17 week period that isn't being captured. Last year, for instance, generating pressure against the Vikings in the first 8 weeks was an entirely more difficult task than doing so in the last 4. Until we adjust for snap counts, we are missing a big chunk of schedule strength and even then we aren't accounting for how players are hobbled, and thus shells of what they normally are, but still on the field. The injury rates in football, combined with the small sample sizes, just makes measuring performance incredibly difficult.

This is not a complaint, by the way. I really appreciate the effort being put forth here.

Points: 0

#13 by theslothook // Dec 11, 2018 - 7:30pm

Well, I do have agl data broken down by position. O line injuries are included.

No, they don't bake into the opponent adjustments at this time and it would take a whole different approach to bake them into the opponent rating that I used.

I should emphasis, this is just the first iteration. Down the road, I'm going play around with weather adjustments, agl, and other things.

Points: 0

#9 by Will Allen // Dec 11, 2018 - 8:07am

I'll say again that 2010 Peyton Manning was the best qb performance I've ever seen. That o-line just flat-out sucked, and the defense was bad, as were the special teams. Eli's hairline-challenged brother dragged that putrescent, rotting, roster into the playoffs, though.

Points: 0

#11 by Will Allen // Dec 11, 2018 - 9:35am

If you want a perfect illustration of how pressure rate is a function of qb play, look at the rosters of the Vikings of the 2007, 2012, and 2014 Vikings, which had high RAP, then look at the 2009 and 2010 Colts rosters, with their low RAPs. The 2007 Vikings had an excellent and healthy o-line, with two borderline potential HOFers, Birk and Hutchinson , and a very talented and good (when motivated and in shape) left tackle in Mckinnie. And Tavaris Jackson at qb. The other Vikings rosters, and the Colts rosters, have a link. The truly awful Charlie Johnson started 14 games or more on the offensive line, and were not otherwise good. The Vikings rosters had Rookie Bridgewater and The Ponderous One at qb. The Colts had Manning at qb.

Points: 0

#16 by Thomas_beardown // Dec 12, 2018 - 4:38pm

Can't wait to see 2018 numbers. Going to guess Mack worth 10-15% RAP.

Points: 0

#17 by Mountain Time … // Dec 12, 2018 - 10:12pm

This stat looks promising! I'm also looking forward to the 2018 results

Points: 0

#18 by Tamerlane // Mar 29, 2019 - 3:41am

I somehow missed this earlier but it is absolutely terrific! Will there be 2018 season update?

Points: 0

Save 10%
& Support the Writers
Support Football Outsiders' independent media. Use promo code WRITERS to save 10% on any FO+ membership and give half the cost of your membership to tip the team of writers.