final project
Introduction
I looked at whether high-volume shooters in the NBA are actually less efficient than low-volume shooters. Most people assume that players who take a lot of shots end up shooting a lower percentage, but I wanted to test if there is a real statistical relationship between shot volume and field goal percentage. The reason I picked this because I love sports there are so many different statistics and oddities in it I can talk about sports forever the sports world as only gotten increasingly analytical, so it made sense for this to be my topic
Data & Methods
The dataset included 1,003 NBA player seasons with stats like field goal attempts (FGA), field goal percentage (FG%), points, rebounds, and more. I used the median number of field goal attempts to split players into high-volume and low-volume shooters, with 501 players in each group.
To analyze the relationship, I ran a two-sample t test comparing FG% between the two groups, a correlation test between FGA and FG%, and a simple linear regression to see how much FGA predicts FG%.
T-test Results
Low-volume shooters had a higher average field goal percentage (FG%) (.501) than high-volume shooters (.481). A two-sample t-test showed that this difference in mean FG% was statistically significant, t(933.31) = -6.82, p < .001. This means that, on average, low-volume shooters are a bit more efficient from the field than high-volume shooters.
t.test(fg_pct ~ volume_group, data = nba)
Correlation results
I also looked at the overall relationship between field goal attempts per game (FGA) and field goal percentage (FG%). There was a significant negative correlation, r = -0.27, p < .001. This indicates that as players take more shots per game, their field goal percentage tends to go down.
cor.test(nba$fga, nba$fg_pct)
Regression results
To quantify how much shot volume affects efficiency, I ran a simple linear regression with FG% as the outcome and FGA as the predictor. The regression showed a significant negative slope, b = -0.0035, p < .001, with R² ≈ .07. This means that for every additional field goal attempt per game, a player’s field goal percentage decreases slightly (about 0.35 percentage points), and shot volume explains around 7% of the variation in FG%.
model <- lm(fg_pct ~ fga, data = nba)
summary(model)
Discussion & Conclusion
All three analyses pointed in the same direction: high-volume shooters tend to be less efficient than low-volume shooters. This makes sense in real basketball. High-volume shooters usually take tougher, contested shots, while low-volume shooters tend to get easier, open looks, which helps their percentage. Overall, the results show that shot volume does affect field goal percentage in the NBA.


Comments
Post a Comment