NFL Passing Statistics (2001-2023)
NFL passing statistics from players since 2001 from Pro Football Reference.
@kaggle.rishabjadhav_nfl_passing_statistics_2001_2023
NFL passing statistics from players since 2001 from Pro Football Reference.
@kaggle.rishabjadhav_nfl_passing_statistics_2001_2023
NFL passing statistics since 2001. Contains record of every player who attempted a pass within the time period. Tracked metrics include passing yards, passing touchdowns, pass attempts, completions, interceptions, and touchdown/interception/completion percentages. More advanced metrics like yards per attempt, adjusted net yards per attempt, and other similar metrics are also included. I used this dataset, accompanied with the NFL Rushing Statistics dataset to predict the NFL MVP winner in 2024.
CREATE TABLE passing_cleaned (
"unnamed_0" BIGINT -- Unnamed: 0,
"player" VARCHAR,
"tm" VARCHAR,
"age" BIGINT,
"g" BIGINT,
"gs" BIGINT,
"cmp" BIGINT,
"att" BIGINT,
"cmp_fbd6fd" DOUBLE -- Cmp%,
"yds" BIGINT,
"td" BIGINT,
"td_fe52ec" DOUBLE -- TD%,
"int" BIGINT,
"int_2bff55" DOUBLE -- Int%,
"n_1d" BIGINT -- 1D,
"lng" BIGINT,
"y_a" DOUBLE,
"ay_a" DOUBLE,
"y_c" DOUBLE,
"y_g" DOUBLE,
"rate" DOUBLE,
"sk" BIGINT,
"yds_s" BIGINT,
"sk_9a0f9c" DOUBLE -- Sk%,
"ny_a" DOUBLE,
"any_a" DOUBLE,
"year" BIGINT
);Anyone who has the link will be able to view this.