NBA Draft Basketball Player Data 1989-2021
NBA Draft Data with Player Performance 1989-2021
@kaggle.mattop_nba_draft_basketball_player_data_19892021
NBA Draft Data with Player Performance 1989-2021
@kaggle.mattop_nba_draft_basketball_player_data_19892021
The dataset contains all NBA Draft picks from 1989-2021. Dataset consists of year, overall pick and player data.
Notable players: LeBron James, Kobe Bryant, Derrick Rose, Dirk Nowitzki, Carmelo Anthony, Stephen Curry, Paul Pierce, Kevin Durant, Shaq, Vince Carter, Allen Iverson
Data from: https://www.basketball-reference.com/draft/
CREATE TABLE nbaplayersdraft (
"id" BIGINT,
"year" BIGINT,
"rank" BIGINT,
"overall_pick" BIGINT,
"team" VARCHAR,
"player" VARCHAR,
"college" VARCHAR,
"years_active" DOUBLE,
"games" DOUBLE,
"minutes_played" DOUBLE,
"points" DOUBLE,
"total_rebounds" DOUBLE,
"assists" DOUBLE,
"field_goal_percentage" DOUBLE,
"n_3_point_percentage" DOUBLE -- 3 Point Percentage,
"free_throw_percentage" DOUBLE,
"average_minutes_played" DOUBLE,
"points_per_game" DOUBLE,
"average_total_rebounds" DOUBLE,
"average_assists" DOUBLE,
"win_shares" DOUBLE,
"win_shares_per_48_minutes" DOUBLE,
"box_plus_minus" DOUBLE,
"value_over_replacement" DOUBLE
);Anyone who has the link will be able to view this.