NBA Player Salaries (2022-23 Season)
Player Salaries and Per Game Stats for the 2022-23 NBA Season
@kaggle.jamiewelsh2_nba_player_salaries_2022_23_season
Player Salaries and Per Game Stats for the 2022-23 NBA Season
@kaggle.jamiewelsh2_nba_player_salaries_2022_23_season
This dataset merges player per-game and advanced statistics for the NBA's 2022-23 season with player salary data, creating a comprehensive resource for understanding the performance and financial aspects of professional basketball players. The dataset is the result of web scraping player salary information from Hoopshype, and downloading traditional per-game and advanced statistics from Basketball Reference.
Key Features:
Potential Uses:
Acknowledgements: Basketball Reference, Hoopshype
CREATE TABLE nba_2022_23_all_stats_with_salary (
"unnamed_0" BIGINT -- Unnamed: 0,
"player_name" VARCHAR,
"salary" BIGINT,
"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_salaries (
"unnamed_0" BIGINT -- Unnamed: 0,
"player_name" VARCHAR,
"salary" BIGINT,
"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.