NFL draft capital and next year DVOA
I previously took a look at draft capital spent by team from 2010-2019 and draft capital by team by position over the same period. Here I will extend that analysis further with the question: Does draft capital spent have an impact on the subsequent year’s performance?
To do that, I’ll look at draft capital spent on offense and defense across the league and predict the following year’s DVOA. Draft capital will be determined using the Chase Stuart model. Note that any picks after 224 are assumed to have no value. There were six teams that invested no draft capital on one side of the ball in a particular year: Carolina in 2016 (offense), Tampa in 2014 (defense), Cleveland in 2013 (offense), Green Bay in 2012 (offense), New England in 2012 (offense), and Miami in 2011 (defense).
Here I’m predicting nine years of DVOA performance (2011-2019).
First let’s take a look at using (non-specialist) overall draft capital used to overall DVOA, controlling for prior year’s DVOA:
#
# Call:
# stats::glm(formula = TotalDVOA ~ previous_TotalDVOA + total_capital_non_specialist,
# data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -37.521 -10.849 -0.753 10.911 41.771
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) -2.78245 4.07856 -0.682 0.496
# previous_TotalDVOA 0.45243 0.06474 6.989 1.97e-11 ***
# total_capital_non_specialist 0.06004 0.08899 0.675 0.500
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 248.8398)
#
# Null deviance: 86985 on 287 degrees of freedom
# Residual deviance: 70919 on 285 degrees of freedom
# AIC: 2411.1
#
# Number of Fisher Scoring iterations: 2
We get nothing - it appears that spending a lot of draft capital tells us nothing about a team’s subsequent DVOA, once the prior year’s DVOA is controlled for.
How about if we look just at offensive DVOA and offensive draft capital?
#
# Call:
# stats::glm(formula = OffDVOA ~ previous_OffDVOA + total_capital_offense,
# data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -33.406 -9.050 -0.352 8.221 35.956
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 0.012205 1.606840 0.008 0.994
# previous_OffDVOA 0.404604 0.059054 6.851 4.51e-11 ***
# total_capital_offense -0.001569 0.064531 -0.024 0.981
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 161.0767)
#
# Null deviance: 55371 on 287 degrees of freedom
# Residual deviance: 45907 on 285 degrees of freedom
# AIC: 2285.9
#
# Number of Fisher Scoring iterations: 2
Again, we get nothing. Spending a lot of draft capital on offensive players does nothing to a team’s offensive DVOA in the subsequent year.
How about defense and defensive draft capital?
#
# Call:
# stats::glm(formula = DefDVOA ~ previous_DefDVOA + total_capital_defense,
# data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -25.0316 -6.4784 0.7658 6.7415 21.5138
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 0.49757 1.20135 0.414 0.679
# previous_DefDVOA 0.36160 0.05930 6.098 3.48e-09 ***
# total_capital_defense -0.01734 0.04757 -0.364 0.716
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 83.61108)
#
# Null deviance: 27158 on 287 degrees of freedom
# Residual deviance: 23829 on 285 degrees of freedom
# AIC: 2097
#
# Number of Fisher Scoring iterations: 2
Draft capital spent on defensive players does nothing for a team’s subsequent defensive DVOA.
There seems to be a theme here. Note that a teams’s prior year DVOA (total, offensive, defensive) always predicts the subsequent year, but adding draft capital does not tell us much of anything.
The implications here are clear: Teams and fans should not expect the draft capital that a team spends to change their fortunes significantly for the better or worse in the subsequent year. This finding lines up with the view that rookies have a lot to learn.
But maybe this is a hasty conclusion, and perhaps certain position groups can contribute meaningfully in their first year. Let’s take a look at draft captial by position (let’s just throw them all in there) and see if they tend to produce any changes in DVOA, first with total DVOA:
#
# Call:
# stats::glm(formula = TotalDVOA ~ previous_TotalDVOA + QB + WR +
# RB + TE + OL + DL + LB + DB, data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -35.254 -10.056 -1.122 10.419 42.477
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) -2.838230 4.170923 -0.680 0.4968
# previous_TotalDVOA 0.435315 0.065958 6.600 2.08e-10 ***
# QB -0.136596 0.141561 -0.965 0.3354
# WR 0.051840 0.158572 0.327 0.7440
# RB 0.428861 0.196833 2.179 0.0302 *
# TE -0.054639 0.241424 -0.226 0.8211
# OL 0.064705 0.139571 0.464 0.6433
# DL 0.090402 0.124947 0.724 0.4700
# LB 0.066786 0.158861 0.420 0.6745
# DB -0.004596 0.136361 -0.034 0.9731
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 248.4968)
#
# Null deviance: 86985 on 287 degrees of freedom
# Residual deviance: 69082 on 278 degrees of freedom
# AIC: 2417.6
#
# Number of Fisher Scoring iterations: 2
Now this is interesting. If you use draft capital spent by position, and control for prior year’s total DVOA, the only statistically significant effect is with running backs producing a positive change in total DVOA. Tentative implication is that if you want to improve your team immediately, spend a lot of draft capital on a running back.
Let’s see if this holds up looking at offensive DVOA:
#
# Call:
# stats::glm(formula = OffDVOA ~ previous_OffDVOA + QB + WR + RB +
# TE + OL, data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -31.274 -8.161 -0.897 8.139 40.578
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) -0.25264 1.64240 -0.154 0.8779
# previous_OffDVOA 0.38852 0.05922 6.561 2.57e-10 ***
# QB -0.13583 0.10452 -1.300 0.1948
# WR -0.07592 0.11554 -0.657 0.5117
# RB 0.29708 0.15317 1.940 0.0534 .
# TE -0.09903 0.18851 -0.525 0.5998
# OL 0.04268 0.09801 0.436 0.6635
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 159.0437)
#
# Null deviance: 55371 on 287 degrees of freedom
# Residual deviance: 44691 on 281 degrees of freedom
# AIC: 2286.1
#
# Number of Fisher Scoring iterations: 2
It’s not quite statistically significant, but running backs may very well improve offensive DVOA in their rookie years.
#
# Call:
# stats::glm(formula = DefDVOA ~ previous_DefDVOA + DL + LB + DB,
# data = dvoa_draftcapital_all)
#
# Deviance Residuals:
# Min 1Q Median 3Q Max
# -25.0180 -6.5026 0.7343 6.7403 21.6061
#
# Coefficients:
# Estimate Std. Error t value Pr(>|t|)
# (Intercept) 0.47575 1.20638 0.394 0.694
# previous_DefDVOA 0.35965 0.05980 6.014 5.57e-09 ***
# DL -0.04332 0.06456 -0.671 0.503
# LB -0.02898 0.08351 -0.347 0.729
# DB 0.01893 0.07249 0.261 0.794
# ---
# Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#
# (Dispersion parameter for gaussian family taken to be 84.06188)
#
# Null deviance: 27158 on 287 degrees of freedom
# Residual deviance: 23790 on 283 degrees of freedom
# AIC: 2100.6
#
# Number of Fisher Scoring iterations: 2
For defense, draft capital spent does not seem to matter by position group.
Bottom line is that we should not expect the Miami Dolphins, who had a huge amount of draft capital in the 2020 draft, to improve a lot in the 2020 season because of their draft picks (they may improve for other reasons, of course). We should not expect players to contribute much their rookie years.
In this vein, PFF looked at the contribution of players by position in their first four years. They found that rookies increased their performance by 75% after their rookie years, and that this is driven by rookies generally playing less and playing less effectively. Interestingly they find that “the learning curve for running backs doesn’t really exist,” with their rookie year performance being similar to years 2-4. Other positions see little contribution in year one and increase their production in years 2-4. This set of findings is consistent with the anlaysis here.
Does this suggest that spending draft capital on running backs is a good idea? No, because running backs don’t matter. It does suggest, however, that if a team is short term focused and wants to improve immediately, drafting a highly touted running back may help.