NBA Per Game And Advanced Stats (2022-23 Season)
Per Game and Advanced Statistics for each NBA Player from the 2022-23 NBA Season
@kaggle.jamiewelsh2_nba_per_game_player_statistics_2022_2023_season
Per Game and Advanced Statistics for each NBA Player from the 2022-23 NBA Season
@kaggle.jamiewelsh2_nba_per_game_player_statistics_2022_2023_season
This dataset provides comprehensive player per-game and advanced statistics for the NBA's 2022-23 season. The dataset is curated, cleaned, and structured to facilitate in-depth analysis of player performance for basketball enthusiasts, analysts, and data scientists.
Key Features:
CREATE TABLE nba_2022_23_all_stats (
"unnamed_0" BIGINT -- Unnamed: 0,
"player_name" VARCHAR,
"position" VARCHAR,
"age" BIGINT,
"team" VARCHAR,
"gp" BIGINT,
"gs" BIGINT,
"mp" DOUBLE,
"fg" DOUBLE,
"fga" DOUBLE,
"fg_51ab2d" DOUBLE -- FG%,
"n_3p" DOUBLE -- 3P,
"n_3pa" DOUBLE -- 3PA,
"n_3p_d87a85" DOUBLE -- 3P%,
"n_2p" DOUBLE -- 2P,
"n_2pa" DOUBLE -- 2PA,
"n_2p_c8658d" DOUBLE -- 2P%,
"efg" DOUBLE -- EFG%,
"ft" DOUBLE,
"fta" DOUBLE,
"ft_ba25d5" DOUBLE -- FT%,
"orb" DOUBLE,
"drb" DOUBLE,
"trb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" DOUBLE,
"pts" DOUBLE,
"total_minutes" BIGINT,
"per" DOUBLE,
"ts" DOUBLE -- TS%,
"n_3par" DOUBLE -- 3PAr,
"ftr" DOUBLE,
"orb_6d1d9b" DOUBLE -- ORB%,
"drb_f91726" DOUBLE -- DRB%,
"trb_08d3e9" DOUBLE -- TRB%,
"ast_d11618" DOUBLE -- AST%,
"stl_d4de98" DOUBLE -- STL%,
"blk_d028d3" DOUBLE -- BLK%,
"tov_8a121e" DOUBLE -- TOV%,
"usg" DOUBLE -- USG%,
"ows" DOUBLE,
"dws" DOUBLE,
"ws" DOUBLE,
"ws_48" DOUBLE,
"obpm" DOUBLE,
"dbpm" DOUBLE,
"bpm" DOUBLE,
"vorp" DOUBLE
);CREATE TABLE nba_per_game_processed (
"index" BIGINT,
"player_name" VARCHAR,
"position" VARCHAR,
"age" BIGINT,
"team" VARCHAR,
"gp" BIGINT,
"gs" BIGINT,
"mp" DOUBLE,
"fg" DOUBLE,
"fga" DOUBLE,
"fg_51ab2d" DOUBLE -- FG%,
"n_3p" DOUBLE -- 3P,
"n_3pa" DOUBLE -- 3PA,
"n_3p_d87a85" DOUBLE -- 3P%,
"n_2p" DOUBLE -- 2P,
"n_2pa" DOUBLE -- 2PA,
"n_2p_c8658d" DOUBLE -- 2P%,
"efg" DOUBLE -- EFG%,
"ft" DOUBLE,
"fta" DOUBLE,
"ft_ba25d5" DOUBLE -- FT%,
"orb" DOUBLE,
"drb" DOUBLE,
"trb" DOUBLE,
"ast" DOUBLE,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" DOUBLE,
"pts" DOUBLE,
"player_additional" VARCHAR
);Anyone who has the link will be able to view this.