NBA Player Box Score Data
All player box scores in NBA's History(Oct. 31, 1946 - Apr. 4, 2023)
@kaggle.loganlauton_nba_player_box_score_data
All player box scores in NBA's History(Oct. 31, 1946 - Apr. 4, 2023)
@kaggle.loganlauton_nba_player_box_score_data
All Player Box Scores for the NBA's entire history up until the date of upload, says 1950-2022 but in reality it is Oct. 31, 1946 - Apr. 4, 2023. Hope is to grab the update data at the end of every season to continue adding to this data.
This is a continuation of my previous NBA dataset, and though the data is there off of an update, I felt it was important to include the data in a separate dataset on Kaggle.
With that being said the data was scraped using the nba_api package. To see the full code view my Github repo.
CREATE TABLE nba_player_box_score_stats_1950_2022 (
"unnamed_0" BIGINT -- Unnamed: 0,
"season" BIGINT,
"game_id" BIGINT,
"player_name" VARCHAR,
"team" VARCHAR,
"game_date" TIMESTAMP,
"matchup" VARCHAR,
"wl" VARCHAR,
"min" BIGINT,
"fgm" BIGINT,
"fga" DOUBLE,
"fg_pct" DOUBLE,
"fg3m" DOUBLE,
"fg3a" DOUBLE,
"fg3_pct" DOUBLE,
"ftm" BIGINT,
"fta" DOUBLE,
"ft_pct" DOUBLE,
"oreb" DOUBLE,
"dreb" DOUBLE,
"reb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" DOUBLE,
"pts" BIGINT,
"plus_minus" DOUBLE,
"video_available" BIGINT
);Anyone who has the link will be able to view this.