Possession Data For 2021-22 NBA Season
All Non-Overtime Possessions in Regular Season
@kaggle.kenhuang41_possession_data_for_202122_nba_season
All Non-Overtime Possessions in Regular Season
@kaggle.kenhuang41_possession_data_for_202122_nba_season
CREATE TABLE n_2021_season_play_5 (
"gameid" VARCHAR,
"time" BIGINT,
"team" BIGINT,
"away" BIGINT,
"home" BIGINT,
"play" VARCHAR,
"blocked" VARCHAR,
"blocker" VARCHAR,
"orebounder" VARCHAR,
"drebounder" VARCHAR,
"fouler" VARCHAR,
"ateam" VARCHAR,
"hteam" VARCHAR
);
CREATE TABLE n_2021_season_poss_5 (
"gameid" VARCHAR,
"away_home" BIGINT,
"team" VARCHAR,
"oppt" VARCHAR,
"time" DOUBLE,
"poss_time" BIGINT,
"block_time" DOUBLE,
"points_scored" BIGINT,
"blocked" VARCHAR,
"blocker" VARCHAR,
"block_play" VARCHAR,
"block_def" DOUBLE,
"orebounder" VARCHAR,
"drebounder" VARCHAR,
"fouler" VARCHAR,
"post_play" VARCHAR,
"num_blocks" BIGINT,
"num_orebs_team" BIGINT,
"num_orebs_ind" BIGINT,
"num_1shots" BIGINT,
"num_2shots" BIGINT,
"num_3shots" BIGINT,
"distance" DOUBLE,
"turnover" BIGINT,
"block_distance" DOUBLE
);
Anyone who has the link will be able to view this.