NFL Player Data
Score data for all NFL Players for all NFL seasons(1922-2022)
@kaggle.loganlauton_nfl_player_data
Score data for all NFL Players for all NFL seasons(1922-2022)
@kaggle.loganlauton_nfl_player_data
I scraped player scoring stats for all NFL seasons, ranging from 1921-22 to 2021-22, from https://www.pro-football-reference.com/
To see the code for scraping both sites see my Github repo https://github.com/logan-lauton/nfl_webscrape
The Data records only players that scored in that season, and thus does not include all players in a given season.
CREATE TABLE nfl_player_stats_1922_2022 (
"unnamed_0" BIGINT -- Unnamed: 0,
"season" BIGINT,
"player" VARCHAR,
"tm" VARCHAR,
"age" DOUBLE,
"pos" VARCHAR,
"g" DOUBLE,
"gs" DOUBLE,
"rshtd" DOUBLE,
"rectd" DOUBLE,
"pr_td" DOUBLE,
"kr_td" DOUBLE,
"fbltd" DOUBLE,
"inttd" DOUBLE,
"othtd" DOUBLE,
"alltd" DOUBLE,
"n_2pm" DOUBLE -- 2PM,
"n_2pa" VARCHAR -- 2PA,
"d2p" DOUBLE,
"xpm" DOUBLE,
"xpa" DOUBLE,
"fgm" DOUBLE,
"fga" DOUBLE,
"sfty" DOUBLE,
"pts" DOUBLE,
"pts_g" DOUBLE
);
Anyone who has the link will be able to view this.