Baselight

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

Loading...
Loading...

About this Dataset

NBA Player Stats (2016 - 2019)

Context

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.

Content

The dataset contains three csv-files corresponding to the three different seasons. Each file has the same 30 columns. It includes columns like:

  • Player Name
  • Player Position (PG, SG, SF, PF, C; no multiple positions)
  • Player Team (If a player has more than 1 row with different teams then this means that the Player got traded during the season. An additional row with total stats of the season is provided in these cases)
  • Minutes played per game
  • Made field goals, Attempted field goals (both per game) and field goal percentage
  • Made three-pointers, attempted three pointers (both per game) and three-point percentage
  • Same for two-pointers and free-throws
  • Offensive, defensive and total rebounds per game
  • Assists, steals, blocks, turnover, personal fouls and points (all per game)

Acknowledgements

I scraped the dataset from Basketball Reference. I want to thank them for providing us with it.

Inspiration

Here are some ideas:

  • Basic analysis including descriptive and inferential statistics using nice data visualization.
  • Prediction models using other external datasets.

Tables

Nba Players Stats 201617

@kaggle.abdurahmanmaarouf_nba_players_stats_2016_2017.nba_players_stats_201617
  • 60.8 kB
  • 595 rows
  • 30 columns
Loading...
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
);

Nba Players Stats 201718

@kaggle.abdurahmanmaarouf_nba_players_stats_2016_2017.nba_players_stats_201718
  • 64.28 kB
  • 664 rows
  • 30 columns
Loading...
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
);

Nba Players Stats 201819

@kaggle.abdurahmanmaarouf_nba_players_stats_2016_2017.nba_players_stats_201819
  • 65.89 kB
  • 708 rows
  • 30 columns
Loading...
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
);

Share link

Anyone who has the link will be able to view this.