NBA Play-by-Play 2019-2020 Season
Comprehensive Insight into Every Move
@kaggle.harrywang_nba_play_by_play_2019_2020_season
Comprehensive Insight into Every Move
@kaggle.harrywang_nba_play_by_play_2019_2020_season
This dataset is revised based on https://www.kaggle.com/datasets/schmadam97/nba-playbyplay-data-20182019
This dataset offers a comprehensive play-by-play log of NBA games, detailing not only scoring plays but also player movements, fouls, rebounds, and other significant actions within each game.
CREATE TABLE nba_play_by_play_2019_2020 (
"gametype" VARCHAR,
"date" VARCHAR,
"winningteam" VARCHAR,
"quarter" BIGINT,
"secleft" BIGINT,
"awayteam" VARCHAR,
"hometeam" VARCHAR,
"shooter" VARCHAR,
"shottype" VARCHAR,
"shotoutcome" VARCHAR,
"shotdist" DOUBLE,
"assister" VARCHAR,
"blocker" VARCHAR,
"foultype" VARCHAR,
"fouler" VARCHAR,
"fouled" VARCHAR,
"rebounder" VARCHAR,
"reboundtype" VARCHAR,
"violationplayer" VARCHAR,
"violationtype" VARCHAR,
"timeoutteam" VARCHAR,
"freethrowshooter" VARCHAR,
"freethrowoutcome" VARCHAR,
"freethrownum" VARCHAR,
"entergame" VARCHAR,
"leavegame" VARCHAR,
"turnoverplayer" VARCHAR,
"turnovertype" VARCHAR,
"turnovercause" VARCHAR,
"turnovercauser" VARCHAR,
"jumpballawayplayer" VARCHAR,
"jumpballhomeplayer" VARCHAR,
"jumpballposs" VARCHAR,
"pointsattempted" BIGINT,
"pointsmade" BIGINT
);Anyone who has the link will be able to view this.