--- title: "2015 NBA player predictions analysis using the `tidyverse`" author: "G. Elliott Morris and Chester Ismay" date: "`r Sys.Date()`" output: rmarkdown::html_vignette: df_print: kable vignette: | %\VignetteIndexEntry{NBA player predictions tidyverse analysis} %\VignetteEngine{knitr::rmarkdown} %\VignetteEncoding{UTF-8} --- This vignette is based on data collected for the 538 story entitled "Projecting The Top 50 Players In The 2015 NBA Draft Class" by Neil Paine and Zach Bradshaw available [here](https://fivethirtyeight.com/features/projecting-the-top-50-players-in-the-2015-nba-draft-class/). First, we load the required packages to reproduce analysis. ```{r, message=FALSE, warning=FALSE} library(fivethirtyeight) library(ggplot2) library(dplyr) library(ggthemes) library(knitr) # Turn off scientific notation options(scipen = 99) ``` # Group the projected statistical plus-minus by year The `nba_draft_2015` data frame features National Basketball Association players and prospects. Each player has a `draft_year` that corresponds to the year the player was drafted into the NBA, if at all. We are interested in analyzing the average `projected_spm` for each draft year. Here, `projected_spm` corresponds to FiveThirtyEight's model of projected statistical plus-minus over year 2-5 of the player's NBA career. Plus-minus is defined by [ BasketballReference.com](https://www.basketball-reference.com/about/bpm.html) as "box score-based metric for evaluating basketball players' quality and contribution to the team." It is measured on a per 100 possessions basis to factor out playing time and adjusted so that the score is relative to the average NBA player. Further from BasketballReference, "0.0 is league average, +5 means the player is 5 points better than an average player over 100 possessions (which is about All-NBA level), -2 is replacement level, and -5 is really bad." ```{r data_year} nba_yearly <- nba_draft_2015 %>% group_by(draft_year) %>% summarise(mean_proj_spm = mean(projected_spm)) nba_yearly ``` # Graph it! Now that we have calculated the mean projected plus-minus for each draft year, let's plot it to better understand which draft class was projected to have the most impact on team success. ```{r graph, fig.width=7} ggplot(nba_yearly, aes(x = draft_year, y = mean_proj_spm, fill = mean_proj_spm)) + geom_col() + theme_fivethirtyeight() + labs(title = "Which NBA draft class was best?", subtitle = "As measured by the mean player/prospect's projected plus-minus", caption = "Data from FiveThirtyEight") + theme(legend.position = "none", plot.title = element_text(face = "bold", size = 20), plot.subtitle = element_text(size = 12), plot.caption = element_text(hjust = 0, size = 10)) ``` The overall trend here is that NBA draft classes, on average, have shown an increase in mean projected plus-minus since 2003. Based on this analysis, 2015 is the best draft class since it has the highest mean projected plus-minus of any year. Another way to think of this is that 2015 was the most balanced based on this metric. This plot also shows that the draft classes have tended to be projected as having more impact on team success over time. # So what about 2003 and 2004? So who were the players in that 2003 NBA draft class? What about in 2004 that has the second largest (in magnitude) average projected plus-minus. Let's explore the top three `projected_spm` for 2003 and 2004: ```{r} nba_draft_2015 %>% filter(draft_year %in% c(2003, 2004)) %>% group_by(draft_year) %>% top_n(projected_spm, n = 3) %>% select(player, position, draft_year, projected_spm) ``` If you are familiar with NBA basketball, these names will stick out to you. Dwayne Wade and Carmelo Anthony are perennial all-stars and Andre Iguodala was the 2015 NBA Finals MVP. (Note that LeBron James is not in this data.) The surprising thing here is that these great players were not able to counter-balance the players with low `projected_spm`. Remember that the mean was used here so even if the great players were outliers (in the positive direction) they weren't able to pull the mean in their direction. Also note that not all of the players listed in this data set ended up playing in the NBA or, if they did, potentially only played a small amount of time.