I'm not disputing your numbers but I'm curious how they were derived
also, you say you've analyzed for follow-up offensive rebounds. I wonder if you've analyzed for added FT's, including the value of FT points added to Blazer totals because of Dame's ability to draw fouls and get teams in the penalty earlier
I'm using the NBA API that lets me download play-by-play event data. A play-by-play event looks something like this:
"MISS Curry 27' 3PT Pullup Jump Shot". It has a bunch other fields like the Period (1-4 plus OT values), Time, PlayerID, TeamID, etc.
From this I can calculate something equivalent to TS% except I can break down by shot distance instead of just overall. TS% is points / possessions-used but it has to estimate possessions-used from the box-score (FGA + 0.44xFTA). I don't have to estimate possessions-used, it's exact.
From the event data I can track for each shot distance:
Possessions used.
Points from the shot.
Points from FTA on the shot
Follow-up points on a missed shot
Then I just calculate points / possessions similar to TS%.
I do also track fouls drawn and add a bonus value for that. I did some analysis that says each foul drawn produces about 0.2 points above and beyond any immediate FTA.
Here is the detailed output for CJ for the past 2+ years:
Code:
Points/Possession
----------------------------------------
Shot Type Shots And1 FTs Cont Bonus PPP %POSS PTS
0-3 feet 0.912 0.023 0.175 0.050 0.027 1.187 | 22.7% 733
4-10 feet 0.832 0.013 0.089 0.053 0.015 1.002 | 13.0% 353
11-15 feet 1.001 0.006 0.074 0.023 0.010 1.114 | 11.8% 369
16-23 feet 0.981 0.007 0.067 0.035 0.009 1.099 | 15.7% 481
Mid-range 0.939 0.009 0.076 0.037 0.011 1.072 | 40.5% 1,203
Twos 0.929 0.014 0.112 0.042 0.017 1.113 | 63.3% 1,936
Threes 1.136 0.002 0.022 0.044 0.002 1.206 | 35.5% 1,195
Total Shooting 1.003 0.009 0.080 0.043 0.012 1.147 | 98.8% 3,131
Non-Shooting 0.000 0.000 1.549 0.000 0.190 1.739 | 1.2% 55
Total 0.991 0.009 0.098 0.042 0.014 1.154 | 100.0% 3,186
Shots = points from the shot itself (per possession)
And1 = points from made FT on a made shot (per possession)
FTS = points from FT's on a non-made shot (2 or 3) (per possession)
Cont = continuation points from the team after a missed shot (per possession)
Bonus = extra points just for drawing a foul (per possession)
PPP = sum of above - similar to TS% except includes continuation and bonus.