draft capital

The cycle of regressions for the draft capital variable was done differently than fantasy_value_per_game. We originally hypothesized that a player's draft age was a covariate, but in the end this was found to be a case of overfitting. The process was instead simplified to loop only thru the n+ variable. In other words, the only other factor considered in addition to draft_capital, was NFL experience.

One complication came up, that draft_capital didn't fit with a straight line. Upon scrolling thru the following images, you can see what I mean. The larger circles in the following scatter plots reperesent bin averages of each 10th percentile; these percentiles were added to make the trends easier to see.

QB:













RB:













WR:













TE:













The next group of images shows the same thing except with a trend of best fit included. In the top right corner you'll find each trend's formula from the completed regression.

QB:













RB:













WR:













TE:













The graphs only show n+ 0-5, but the regressions were completed up to 14, just in case was needed. The following table displays all the regression parameters for each position. You can see R2 ranges anywhere from 0.000-0.400, but mostly hovers around 0.200.

posn+y interceptslopeR2
QB075.9-14.20.403
QB1104.1-18.90.381
QB296.8-17.90.366
QB374.4-12.70.223
QB477.6-14.20.282
QB541.1-6.00.062
QB667.0-12.10.193
QB744.8-8.00.133
QB847.8-8.30.116
QB943.6-8.20.179
QB1046.8-8.80.162
QB1151.5-10.00.198
QB1253.7-1090.305
QB1315.8-2.10.011
QB146.5-0.20.001
-----
RB0148.7-27.00.361
RB1151.6-26.30.238
RB2151.9-26.70.246
RB3137.4-23.80.199
RB4102.9-18.20.171
RB587.5-15.70.141
RB659.4-10.30.090
RB752.6-9.50.108
RB829.5-5.40.063
RB912.7-2.20.023
RB1012.9-2.30.043
RB1111.9-2.20.037
RB126.3-1.20.27
RB135.1-0.90.046
RB140.60.00.000
-----
WR084.3-15.20.250
WR1117.2-20.80.238
WR2117.2-20.90.216
WR3104.6-18.60.195
WR4101.5-18.00.143
WR593.8-16.80.140
WR682.3-15.00.125
WR758.2-10.50.084
WR844.4-8.00.067
WR920.7-3.50.024
WR107.1-0.90.003
WR111.7-0.30.007
WR121.7-0.30.045
WR13000.000
WR14000.000
-----
TE066.6-12.30.277
TE1115.8-21.00.219
TE2122.8-21.80.201
TE3114.9-20.70.210
TE4124.2-23.00.251
TE589.3-16.00.112
TE685.2-15.60.166
TE798.9-18.30.140
TE847.3-8.50.085
TE937.1-6.70.047
TE1036.1-6.60.064
TE1135.5-6.70.111
TE1224.3-4.80.197
TE137.5-1.40.086
TE14000.000

The next group of images below graphically displays the parameters of slope and y-intercept from the previous table.

QB:





RB:





WR:





TE:





Similar to how these parameters needed to be adjusted for the fvpg predictor variable, the same goes for the variable ln(draft_capital). Slopes, and intercepts adhere to a general trend, and as such should follow a smooth transition instead of bouncing around. On one hand it's a bit easier for ln(draft_capital) because there's only one controlling variable, n+; on the other, there's no simple way to apply a function to the trend. As such, a variation of the moving average technique to smooth the parameters. The black line in the following images represents the adjusted values.

QB:





RB:





WR:





TE:





<     >