NBA Player Stats (2016 - 2019)
Includes many stats of players from the seasons 2016/17, 2017/18 and 2018/19
@kaggle.abdurahmanmaarouf_nba_players_stats_2016_2017
Includes many stats of players from the seasons 2016/17, 2017/18 and 2018/19
@kaggle.abdurahmanmaarouf_nba_players_stats_2016_2017
The dataset contains information about NBA-Player statistics of the regular seasons 2016/17, 2017/18 and 2018/19. The goal here is to have all NBA-Player statistics of the past three seasons under one umbrella so that it is easy for everyone who is interested in sports analytics and especially basketball to start their Data Science Journey. I want to motivate you using this and perhaps other external datasets for your analysis. I'm excited to see the resulting notebooks.
The dataset contains three csv-files corresponding to the three different seasons. Each file has the same 30 columns. It includes columns like:
I scraped the dataset from Basketball Reference. I want to thank them for providing us with it.
Here are some ideas:
CREATE TABLE nba_players_stats_201617 (
"rk" BIGINT,
"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
);CREATE TABLE nba_players_stats_201718 (
"rk" BIGINT,
"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
);CREATE TABLE nba_players_stats_201819 (
"rk" BIGINT,
"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.