NBA Team Per Game Stats
Box scores of NBA teams from 1980-2019 season
@kaggle.jpsdev_19802019_nba_team_stats
Box scores of NBA teams from 1980-2019 season
@kaggle.jpsdev_19802019_nba_team_stats
The NBA play style is always changing, and collecting the "Team Per Game" stats can be an insight into increasing team efficiency, pace of games, etc.
The dataset contains the "Team Per Game" stats of NBA teams from 1980-2019 season.
The data recorded is that of a box score, containing: Points (PTS), Assists (AST), Steals (STL), etc.
There are 2 data sets:
Data source: Basketball Reference
Questions to explore:
-> has the pace of the game changed? Has it increased/decreased over time?
-> cluster the teams based on efficiency
-> how do the teams from different eras compare?
CREATE TABLE main_df (
"rk" BIGINT,
"team" VARCHAR,
"g" 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%,
"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,
"year" BIGINT
);
CREATE TABLE playoff_labelled (
"rk" BIGINT,
"team" VARCHAR,
"g" 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%,
"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,
"year" BIGINT,
"playoff" BIGINT
);
CREATE TABLE renamed_teams (
"rk" BIGINT,
"team" VARCHAR,
"g" 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%,
"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,
"year" BIGINT,
"playoff" BIGINT
);
Anyone who has the link will be able to view this.