NBA All Time Stats (1947-Present)
Regular Season and Playoffs data from Basketball-Reference
@kaggle.gonzalogigena_nba_all_time_stats
Regular Season and Playoffs data from Basketball-Reference
@kaggle.gonzalogigena_nba_all_time_stats
This dataset provides a comprehensive collection of NBA (National Basketball Association) all-time statistics sourced from Basketball Reference, a leading platform for basketball statistics and analysis. The dataset covers a wide range of categories including player statistics, team performance metrics, and historical records spanning several decades of NBA history.
You can find all the available datasets in the github repository.
Take a look in their glossary for a detailed column description Glossary
The dataset is updated daily to incorporate the latest player and team statistics, ensuring that users have access to the most recent data for their analyses and research.
In addition to the existing dataset covering player and team statistics, I’m actively working on expanding the dataset to include play-by-play data and shot charts.
CREATE TABLE all_time_teams (
"franchise" VARCHAR,
"lg" VARCHAR,
"from" VARCHAR,
"to" VARCHAR,
"yrs" BIGINT,
"g" BIGINT,
"w" BIGINT,
"l" BIGINT,
"w_l" DOUBLE -- W/L%,
"plyfs" BIGINT,
"div" DOUBLE,
"conf" BIGINT,
"champ" BIGINT,
"status" VARCHAR,
"team_abbr" VARCHAR,
"current_abbr" VARCHAR
);CREATE TABLE rookies_by_year (
"player" VARCHAR,
"debut" VARCHAR,
"age" DOUBLE,
"yrs" BIGINT,
"g" BIGINT,
"mp" DOUBLE,
"fg" BIGINT,
"fga" BIGINT,
"n_3p" DOUBLE -- 3P,
"n_3pa" DOUBLE -- 3PA,
"ft" BIGINT,
"fta" BIGINT,
"orb" DOUBLE,
"trb" DOUBLE,
"ast" BIGINT,
"stl" DOUBLE,
"blk" DOUBLE,
"tov" DOUBLE,
"pf" BIGINT,
"pts" BIGINT,
"fg_51ab2d" DOUBLE -- FG%,
"n_3p_d87a85" DOUBLE -- 3P%,
"ft_ba25d5" DOUBLE -- FT%,
"per_game_mp" DOUBLE,
"per_game_pts" DOUBLE,
"per_game_trb" DOUBLE,
"per_game_ast" DOUBLE,
"per_game_stl" DOUBLE,
"per_game_blk" DOUBLE,
"player_reference" VARCHAR,
"league" VARCHAR,
"season" VARCHAR
);CREATE TABLE schedule (
"league" VARCHAR,
"season" VARCHAR,
"date" TIMESTAMP,
"start_et" VARCHAR -- Start (ET),
"visitor" VARCHAR,
"visitor_pts" BIGINT,
"visitor_record" VARCHAR,
"home" VARCHAR,
"home_pts" BIGINT,
"home_record" VARCHAR,
"game_reference" VARCHAR,
"ot" VARCHAR,
"attendance" DOUBLE,
"arena" VARCHAR,
"playoffs" BOOLEAN,
"series" VARCHAR
);Anyone who has the link will be able to view this.