2021-22 NBA Season Per Game Stats
Per Game Stats For All Players
@kaggle.andrew1456_202122_nba_season_per_game_stats
Per Game Stats For All Players
@kaggle.andrew1456_202122_nba_season_per_game_stats
Data was pulled from BasketballReference.com.
Player - Player Name
Pos - Primary Position Played (PG, SG, SF, PF, C)
Age - Age of Player
Tm - Team Played For (TOT = total of multiple teams in a year. Removed partial season data.)
G - Games Played
GS - Games Started
MP - Minutes Played
FG - Field Goals Made
FGA - Field Goals Attempted
FG% - Field Goal Percentage
3P - Three Pointers Made
3PA - Three Pointers Attempted
3P% - Three Point Percentage
2P - Two Pointers Mades
2PA - Two Pointers Attempted
2P%- Two Point Percentage
eFG% - Effective Field Goal Percentage
FT - Free Throws Made
FTA - Free Throws Attempted
FT% - Free Throw Percenatge
ORB - Offensive Rebounds
DRB - Defensive Rebounds
TRB - Total Rebounds
AST - Assists
STL - Steals
BLK - Blocks
TOV -Turnovers
PF -Personal Fouls
PTS -Points
CREATE TABLE n_2021_22_nba_season_per_game_sheet1_1 (
"player" VARCHAR,
"pos" VARCHAR,
"age" BIGINT,
"tm" VARCHAR,
"g" 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
);
Anyone who has the link will be able to view this.