NBA Player Statistics
Advanced NBA player performance data from 2011-2022
@kaggle.marcsperzel_nba_player_statistics
Advanced NBA player performance data from 2011-2022
@kaggle.marcsperzel_nba_player_statistics
CREATE TABLE player_data (
"n__id" VARCHAR,
"game_id" BIGINT,
"game_date" TIMESTAMP,
"team_id" BIGINT,
"team_abbreviation" VARCHAR,
"team_city" VARCHAR,
"player_id" BIGINT,
"player_name" VARCHAR,
"nickname" VARCHAR,
"start_position" VARCHAR,
"pct_fga_2pt" DOUBLE,
"pct_ast_2pm" DOUBLE,
"pct_pts_2pt" DOUBLE,
"ast_pct" DOUBLE,
"pct_fg3m" DOUBLE,
"pct_blka" DOUBLE,
"pct_blk" DOUBLE,
"fg3_pct" DOUBLE,
"pct_pts" DOUBLE,
"pct_fgm" DOUBLE,
"pct_reb" DOUBLE,
"pct_fga" DOUBLE,
"e_usg_pct" DOUBLE,
"reb_pct" DOUBLE,
"pct_pts_off_tov" DOUBLE,
"pct_dreb" DOUBLE,
"opp_oreb_pct" DOUBLE,
"pct_uast_3pm" DOUBLE,
"pct_tov" DOUBLE,
"dreb_pct" DOUBLE,
"pct_ftm" DOUBLE,
"opp_tov_pct" DOUBLE,
"pct_uast_2pm" DOUBLE,
"pct_ast_3pm" DOUBLE,
"usg_pct" DOUBLE,
"pct_ast" DOUBLE,
"fg_pct" DOUBLE,
"efg_pct" DOUBLE,
"ts_pct" DOUBLE,
"pct_oreb" DOUBLE,
"pct_pts_2pt_mr" DOUBLE,
"pct_pf" DOUBLE,
"ft_pct" DOUBLE,
"pct_pts_paint" DOUBLE,
"pct_pts_ft" DOUBLE,
"pct_pfd" DOUBLE,
"pct_fga_3pt" DOUBLE,
"opp_efg_pct" DOUBLE,
"cfg_pct" DOUBLE,
"tm_tov_pct" DOUBLE,
"pct_uast_fgm" DOUBLE,
"pct_pts_3pt" DOUBLE,
"oreb_pct" DOUBLE,
"pct_pts_fb" DOUBLE,
"pct_ast_fgm" DOUBLE,
"ufg_pct" DOUBLE,
"pct_fg3a" DOUBLE,
"pct_stl" DOUBLE,
"dfg_pct" DOUBLE,
"oreb" BIGINT,
"ast" BIGINT,
"reb" BIGINT,
"dfga" BIGINT,
"sast" BIGINT,
"opp_pts_2nd_chance" BIGINT,
"pfd" BIGINT,
"to" BIGINT,
"fg3a" BIGINT,
"stl" BIGINT,
"poss" BIGINT,
"pass" BIGINT,
"ufgm" BIGINT,
"fg3m" BIGINT,
"pts" BIGINT,
"ufga" BIGINT,
"drbc" BIGINT,
"opp_pts_paint" BIGINT,
"ftm" BIGINT,
"orbc" BIGINT,
"blka" BIGINT,
"pts_fb" BIGINT,
"cfga" BIGINT,
"pts_paint" BIGINT,
"tchs" BIGINT,
"cfgm" BIGINT,
"plus_minus" BIGINT,
"dfgm" BIGINT,
"opp_pts_off_tov" BIGINT,
"pts_off_tov" BIGINT,
"fga" BIGINT,
"fta" BIGINT,
"pts_2nd_chance" BIGINT,
"fgm" BIGINT,
"pf" BIGINT,
"dreb" BIGINT,
"blk" BIGINT,
"rbc" BIGINT,
"opp_pts_fb" BIGINT,
"ftast" BIGINT,
"e_off_rating" DOUBLE
);
Anyone who has the link will be able to view this.