NBA Draft Combine
Player data from the NBA Draft Combine
@kaggle.marcusfern_nba_draft_combine
Player data from the NBA Draft Combine
@kaggle.marcusfern_nba_draft_combine
The NBA Draft Combine is an annual showcase for basketball players. It is held in May, shortly before the NBA Draft. Athletes are invited to display their skills, and participants are measured. This data set includes anthropometric, strength, and agility statistics.
Starting from 2000, this data set includes over 1,600 players. All data were sourced from NBA Stats.
Not included are:
A few players were invited twice. In these cases, only data from the latest draft combine were retained. Players, who participated but were not measured, were excluded as well.
CREATE TABLE nba_draft_combine (
"year" BIGINT,
"player" VARCHAR,
"pos" VARCHAR,
"hgt" DOUBLE,
"wgt" VARCHAR,
"bmi" DOUBLE,
"bf" DOUBLE,
"wngspn" DOUBLE,
"stndrch" DOUBLE,
"handl" DOUBLE,
"handw" DOUBLE,
"stndvert" DOUBLE,
"lpvert" DOUBLE,
"lane" DOUBLE,
"shuttle" DOUBLE,
"sprint" DOUBLE,
"bench" DOUBLE,
"bar" DOUBLE,
"pan" DOUBLE,
"pbhgt" DOUBLE,
"pdhgt" DOUBLE
);
Anyone who has the link will be able to view this.