NFL Combine - 2010 To 2023 Performance Data
NFL Combine results including the draft outcome
@kaggle.thomassshaw_nfl_combine_performance_dataset
NFL Combine results including the draft outcome
@kaggle.thomassshaw_nfl_combine_performance_dataset
This dataset compiles player performance data from the NFL Combine, sourced from Pro Football Reference. The dataset spans from 2010 to 2023, featuring various attributes showcasing the physical and athletic prowess of NFL prospects during their combine assessments.
Column | Description |
---|---|
Year | The year of the NFL Combine assessment. |
Player | The name of the player. |
Pos | Player position. |
School | The university or institution where the player played college football. |
Height | Height of the player. |
Weight | Weight of the player. |
40yd | Time taken by the player to run 40 yards. |
Vertical | Vertical jump height. |
Bench | Number of bench press repetitions. |
Broad Jump | Distance covered in the broad jump. |
3Cone | Time taken to complete the 3-cone drill. |
Shuttle | Time taken to complete the shuttle run. |
Drafted | Boolean value indicating whether the player was drafted (True) or not (False). |
Round | The round in which the player was drafted. |
Pick | The pick number within the drafted round. |
CREATE TABLE nfl_combine_2010_to_2023 (
"year" BIGINT,
"player" VARCHAR,
"pos" VARCHAR,
"school" VARCHAR,
"height" VARCHAR,
"weight" DOUBLE,
"n_40yd" DOUBLE -- 40yd,
"vertical" DOUBLE,
"bench" DOUBLE,
"broad_jump" DOUBLE,
"n_3cone" DOUBLE -- 3Cone,
"shuttle" DOUBLE,
"drafted" BOOLEAN,
"round" DOUBLE,
"pick" DOUBLE
);
Anyone who has the link will be able to view this.