Rob Savage
The purpose of this project was to take a quick look into Damian Lillard's career Points Per Game statistics through the 2020 season to see if he was more efficient on a certain day of the week.
-
Python (Data Aggregation/Cleaning)
- Pandas Library
-
NumPy (Calculations)
-
Github (Publishing of Results and Analysis)
-
Jupyter Notebook
-
Seaborn (Visualizations)
-
Matplotlib (Visualizations)
-
Glob (Mass File Merging)
-
basketball_reference_web_scraper
(Module to Scrape Data from Basketball-Reference.com)
https://www.basketball-reference.com/
-
Used
basketball_reference_web_scraper
to pull Damian Lillard's seasonal box scores into individualCSVs
-
Used
glob
to merge all of theCSVs
into one data frame -
Used
Pandas
datetime
feature to read thedate
column and append a new column that specified the day of the week -
Used a
groupby
on the day of the week to calculate acount
on the games and amean
on thepoints_scored
-
Once the new data frame was created,
Seaborn
andMatplotlib
were employed to create the visualization
Unsurprisingly, Damian Lillard is incredibly consistent on each day of the week with Friday being his most proficient by a slim margin. I felt this was a fun intro to my personal projects utilizing a module that had never used before. Much more complex personal projects will follow.