- the amount of time a player has been on the court without being substituted out
- the amount of total minutes a player has been on the court
has any influence on player performance.
For the first scenario I reset 'time on the court' at halftime, but not between quarters or timeouts. There certainly are arguments for doing it differently, but for now, that's how it is
I did it by adding variables to my standard RAPM-framework that capture the number of players (currently on the court for home and away) that have played a certain amount of consecutive/total minutes.
As such, player skill is accounted for. 'Effect of being up X' is also accounted for
Here's the table/chart for table 'Effect of playing X consecutive minutes'
Code: Select all
╔═════════════════╦═════════╦═════════╗
║ Cons.Min played ║ Offense ║ Defense ║
╠═════════════════╬═════════╬═════════╣
║ “<2” ║ -1.2 ║ -0.9 ║
║ “2-4” ║ 0.2 ║ -0.2 ║
║ “4-6” ║ 0.6 ║ -0.2 ║
║ “6-8” ║ 0.8 ║ -0.1 ║
║ “8-10” ║ 0.9 ║ -0.3 ║
║ “10+” ║ 0.8 ║ -0.3 ║
╚═════════════════╩═════════╩═════════╝

It's interesting to see that players perform below average in the first two minutes of their stint. Since the effect on defense seems to be very similar to the effect on offense I can't blame the offensive performance in the "<2" minute window on the fact that there had to be at least one dead ball situation (to make the substitution). I'm guessing players have to 'get into the game', or something. Letting the players play 6-10 consecutive minutes appears to be optimal
and the table for 'Effect of X total minutes played'
Code: Select all
╔═══════════════════╦═════════╦═════════╗
║ Total Min. played ║ Offense ║ Defense ║
╠═══════════════════╬═════════╬═════════╣
║ “less than 40” ║ -0.4 ║ 1.0 ║
║ “40-44” ║ 1.0 ║ -1.2 ║
║ “44+” ║ 1.5 ║ -1.8 ║
╚═══════════════════╩═════════╩═════════╝
Obviously this analysis also suffers from survivor bias. My guess is that players only play 40+ minutes in close games, and probably moreso when their team is slightly behind. This might make them (incorrectly?) think they have to spend all/most their energy on offense and their defense subsequently suffers. Not sure though
Please note that I was trying to capture effect on performance only. Injuries are a whole nother story