NBA Play-by-Play And Box Scores
Full dataset of publicly available NBA play-by-play and box score data. in prog.
@kaggle.zachht_nba_play_by_play_and_box_scores
Full dataset of publicly available NBA play-by-play and box score data. in prog.
@kaggle.zachht_nba_play_by_play_and_box_scores
This is a compilation of publicly available information on NBA players, currently includes a player directory, as well as a box score and play by play dataset that is updating daily, it should be up-to date by the end of 8/2025. stats begin with the 1997 season and continue to present day.
The next stage is breaking down these games into "stints"- portions of the game in between subtitutions- and tracking the stats of each lineup v lineup stint.
CREATE TABLE nba_box_scores_selenium_final (
"player" VARCHAR,
"mp" VARCHAR,
"fg" VARCHAR,
"fga" VARCHAR,
"fg_51ab2d" VARCHAR -- FG%,
"n_3p" VARCHAR -- 3P,
"n_3pa" VARCHAR -- 3PA,
"n_3p_d87a85" VARCHAR -- 3P%,
"ft" VARCHAR,
"fta" VARCHAR,
"ft_ba25d5" VARCHAR -- FT%,
"orb" VARCHAR,
"drb" VARCHAR,
"trb" VARCHAR,
"ast" VARCHAR,
"stl" VARCHAR,
"blk" VARCHAR,
"tov" VARCHAR,
"pf" VARCHAR,
"pts" VARCHAR,
"gmsc" VARCHAR,
"n" VARCHAR -- +/-,
"game_id" VARCHAR,
"team_id" VARCHAR
);
Anyone who has the link will be able to view this.