The goal of this analysis is to predict the NBA All-Stars and NBA Awards for a specific year, by applying various machine learning algorithms on player performance data and All-Star selections / award voting data from other years. NBA Awards considered in this analysis are Most Valuable Player (MVP), Rookie of the Year (ROY), Defensive Player of the Year (DPOY) and Sixth Man of the Year (SMOY).
NBA data from 2000-2018 from basketball-reference.com have been saved as csv-files in the data directory using the scraper functions in NBAanalysissetup.py. Data from other years can be obtained by using Basketball_Reference_scraper.py. The following data are used in the analysis, where each file corresponds to a single season:
- NBA_totals_[season].csv: Regular player performance statistics
- NBA_advanced_[season].csv: Advanced player performance statistics
- NBA_teammisc_[season].csv: Team performance statistics
- NBA_rookies_[season].csv: Rookie performance statistics
- NBA_allstars_[season].csv: All-Star game statistics
- NBA_MVP_[season].csv: MVP voting statistics
- NBA_ROY_[season].csv: ROY voting statistics
- NBA_DPOY_[season].csv: DPOY voting statistics
- NBA_SMOY_[season].csv: SMOY voting statistics
The analysis is based on the NumPy and Pandas data analysis packages and the Scikit-learn machine learning package for Python. The XGBoost algorithm and the Keras-TensorFlow deep learning libraries are tested as well. The Matplotlib, Seaborn and Bokeh packages are used for visualization.
The NBA All-Stars and NBA Awards analyses are described in more detail in the following:
At the time of writing (February 4, 2019), the NBA All-Stars for 2019 have been selected but the NBA Awards for 2019 have not been awarded yet. Predictions for the NBA All-Stars and NBA Awards for 2019 are listed below.
The predicted NBA All-Stars for 2019 based on 2010-2019 data, ordered by the median predicted calibrated probability score over all selected models and compared to the actual NBA All-Star selection in 2019:
-
Western Conference:
- Deserved All-Stars: James Harden (HOU), Kevin Durant (GSW), Anthony Davis (NOP), Paul George (OKC), Stephen Curry (GSW), Damian Lillard (POR), LeBron James (LAL), Russell Westbrook (OKC), LaMarcus Aldridge (SAS), Nikola Jokic (DEN), Karl-Anthony Towns (MIN)
- Questionable All-Stars: Klay Thompson (GSW)
- Snubbed non-All-Stars: DeMar DeRozan (SAS)
-
Eastern Conference:
- Deserved All-Stars: Joel Embiid (PHI), Giannis Antetokounmpo (MIL), Kawhi Leonard (TOR), Blake Griffin (DET), Kemba Walker (CHO), Kyrie Irving (BOS), Nikola Vucevic (ORL), Ben Simmons (PHI), D'Angelo Russell (BRK), Bradley Beal (WAS), Khris Middleton (MIL)
- Questionable All-Stars: Kyle Lowry (TOR), Victor Oladipo (IND)
- Snubbed non-All-Stars: Jimmy Butler (PHI), Eric Bledsoe (MIL)
The top-3 predicted NBA MVP, ROY, DPOY and SMOY candidates based on 2000-2019 data are listed below in order of the median predicted Award Voting Share rank over all selected models.
-
- James Harden (HOU)
- Kevin Durant (GSW)
- Joel Embiid (PHI)
-
- Luka Doncic (DAL)
- Trae Young (ATL)
- Deandre Ayton (PHO)
-
- Kawhi Leonard (TOR)
- Joel Embiid (PHI)
- Myles Turner (IND)
-
- Lou Williams (LAC)
- Spencer Dinwiddie (BRK)
- Dennis Schroder (OKC)