NBA Block Possession Data
Summary of possessions involving a blocked shot (1996-2021)
@kaggle.kenhuang41_nba_block_possession_data
Summary of possessions involving a blocked shot (1996-2021)
@kaggle.kenhuang41_nba_block_possession_data
Individual player data from all games from start of 1996-97 season to January 27, 2021
If you use this data, I'd love to hear what projects my fellow basketball nerds are up to or even help collaborate! Shoot me an email at kh19@princeton.edu and please credit me with a link to this kaggle or my website. As usual, any suggestions or tips would be greatly appreciated. Enjoy!
Coding Time: 20 hours
Scraping Time: 6 hours
CREATE TABLE games (
"game_id" VARCHAR,
"player_id" VARCHAR,
"player" VARCHAR,
"possession_id" BIGINT,
"seconds_elapsed" DOUBLE,
"points_scored" BIGINT,
"team" VARCHAR,
"play" VARCHAR,
"block_play" VARCHAR,
"eventual_play" VARCHAR,
"block_count" BIGINT,
"shot_count" BIGINT
);Anyone who has the link will be able to view this.