All NBA & ABA Players Bio, Stats, & Accolades
Current June 15th, 2022
@kaggle.ryanschubertds_all_nba_aba_players_bio_stats_accolades
Current June 15th, 2022
@kaggle.ryanschubertds_all_nba_aba_players_bio_stats_accolades
Data for all NBA & ABA players from 1946 to June 2022. The data includes personal measurables, career statistics, and career accolades. All data was web scraped from basketball-reference.com. The data is current as of June 29th, 2022.
CREATE TABLE nba_players_clean (
"player" VARCHAR,
"from" BIGINT,
"to" BIGINT,
"years" BIGINT,
"pos" VARCHAR,
"ht" VARCHAR,
"height" DOUBLE,
"wt" DOUBLE,
"g" BIGINT,
"pts" DOUBLE,
"trb" DOUBLE,
"ast" DOUBLE,
"fg" DOUBLE -- FG%,
"fg3" DOUBLE -- FG3%,
"ft" DOUBLE -- FT%,
"efg" DOUBLE -- EFG%,
"per" DOUBLE,
"ws" DOUBLE,
"all_star" BIGINT,
"all_nba" BIGINT,
"all_aba" BIGINT,
"all_rookie" BIGINT,
"all_defensive" BIGINT,
"blk_champ" BIGINT,
"stl_champ" BIGINT,
"trb_champ" BIGINT,
"ast_champ" BIGINT,
"scoring_champ" BIGINT,
"most_improved" BIGINT,
"sixth_man" BIGINT,
"dpoy" BIGINT,
"roy" BIGINT,
"as_mvp" BIGINT,
"cf_mvp" BIGINT,
"finals_mvp" BIGINT,
"mvp" BIGINT,
"championships" BIGINT,
"nba_75_team" BIGINT,
"aba_all_time_team" BIGINT
);Anyone who has the link will be able to view this.