Rebound Ratios since the 04-05 Season
Posted: Mon Jan 18, 2016 5:14 pm
Hello all,
I am new to the forums, and excited to make my first post! In addition to this being my first post, this is also my first ever basketball (or any other sport, for that matter) analytics project, and also my first ever self-directed Python project. I am very open to any and all criticism. I hope I am able to start some sort of discussion or provide some insights! Now, onto my analysis:
There’s been a lot of talk recently about how NBA teams are starting to abandon efforts at getting offensive rebounds in order to play transition defense. I wanted to explore this, as well as how defensive and total rebounds have changed from the past, through numbers. Specifically, I wanted to find out if teams are having less players try to grab rebounds (offensive, defensive, and total) now than they did since 2005 with their increased emphases on transition play. So, I thought I should examine this by seeing how the ratio of team’s top rebounder’s (for each of the top 3 categories respectively) rebounds per game to total team rebounds per game has changed (or not changed) from the past. I also wanted to see this ratio for the second best rebounder from each team, and also for the sum of rebounds per game of the best and second best rebounders on each team. Specifically, I looked from the 2004-2005 season up until the 2014-2015 season (it was easiest to work with this subset of data as there was no change in the number of teams within this period).
To clarify, I picked out the best offensive rebounder, defensive rebounder, and total rebounder from each team on a seasonal basis since the 2004-2005 season, and divided each of those player’s seasonal ORPG, DRPG, and TRPG, respectively, to the team’s total ORPG, DRPG, and TRPG, respectively.
I realize these ratios are somewhat flawed in that there could be variability on each team due to factors such as new draft picks/players, trades, and the variability in free/easy defensive rebounds for the team. Further, the ratio in itself may be somewhat arbitrary. Nevertheless, my hope is that a significant change in these ratios should mark some sort of change within the team’s rebounding strategy.
I wrote the code to do this entirely in Python, and it can be found at: https://github.com/jgandhi714/Rebound_Ratios. A PDF with all 94 plots that my code produced can be found in this GitHub repository, as well as a folder with each plot saved as a separate PNG file. I was initially disappointed to find out that league-wide averages for the ratios afore-mentioned have remained relatively unchanged (first 4 plots in PDF), but many of the individual team plots show significant changes in the ratios (I'll leave it to you to take a look for yourself). Please let me know what you think (and critique my code and help me make it more efficient/extensive)!
I am new to the forums, and excited to make my first post! In addition to this being my first post, this is also my first ever basketball (or any other sport, for that matter) analytics project, and also my first ever self-directed Python project. I am very open to any and all criticism. I hope I am able to start some sort of discussion or provide some insights! Now, onto my analysis:
There’s been a lot of talk recently about how NBA teams are starting to abandon efforts at getting offensive rebounds in order to play transition defense. I wanted to explore this, as well as how defensive and total rebounds have changed from the past, through numbers. Specifically, I wanted to find out if teams are having less players try to grab rebounds (offensive, defensive, and total) now than they did since 2005 with their increased emphases on transition play. So, I thought I should examine this by seeing how the ratio of team’s top rebounder’s (for each of the top 3 categories respectively) rebounds per game to total team rebounds per game has changed (or not changed) from the past. I also wanted to see this ratio for the second best rebounder from each team, and also for the sum of rebounds per game of the best and second best rebounders on each team. Specifically, I looked from the 2004-2005 season up until the 2014-2015 season (it was easiest to work with this subset of data as there was no change in the number of teams within this period).
To clarify, I picked out the best offensive rebounder, defensive rebounder, and total rebounder from each team on a seasonal basis since the 2004-2005 season, and divided each of those player’s seasonal ORPG, DRPG, and TRPG, respectively, to the team’s total ORPG, DRPG, and TRPG, respectively.
I realize these ratios are somewhat flawed in that there could be variability on each team due to factors such as new draft picks/players, trades, and the variability in free/easy defensive rebounds for the team. Further, the ratio in itself may be somewhat arbitrary. Nevertheless, my hope is that a significant change in these ratios should mark some sort of change within the team’s rebounding strategy.
I wrote the code to do this entirely in Python, and it can be found at: https://github.com/jgandhi714/Rebound_Ratios. A PDF with all 94 plots that my code produced can be found in this GitHub repository, as well as a folder with each plot saved as a separate PNG file. I was initially disappointed to find out that league-wide averages for the ratios afore-mentioned have remained relatively unchanged (first 4 plots in PDF), but many of the individual team plots show significant changes in the ratios (I'll leave it to you to take a look for yourself). Please let me know what you think (and critique my code and help me make it more efficient/extensive)!