Baselight

NFL Roster 2022 Season

This is the NFL 2022 season roster, scraped from ESPN.com

@kaggle.bretmontgomery_nfl_roster_2022_season

Loading...
Loading...

About this Dataset

NFL Roster 2022 Season

This dataset includes the NFL rosters of all teams from the 2022 season. There are 12 columns spanning 2483 rows. This data was scraped from ESPN.com on February 18th, 2023 following the conclusion of the Super Bowl.

I've included this data as both a CSV and Parquet file. It's recommended to download the parquet file due to the significant reduction in file size and the added benefit of being able to load a subset of the columns into memory, rather than all 12 at once. This filetype also preserves the type conversions that I've performed in pandas, which alone cut the memory usage from 233KB's to 80.7KB's. Please keep in mind though that you'll require Apache Arrow support to be able to read in the parquet filetype (conda/pip install pyarrow for support in Python).

Tables

Nfl Roster 2022 Season

@kaggle.bretmontgomery_nfl_roster_2022_season.nfl_roster_2022_season
  • 109 KB
  • 2483 rows
  • 12 columns
Loading...

CREATE TABLE nfl_roster_2022_season (
  "name" VARCHAR,
  "number" BIGINT,
  "team" VARCHAR,
  "league" VARCHAR,
  "role" VARCHAR,
  "position" VARCHAR,
  "age" BIGINT,
  "height_in_inches" BIGINT,
  "weight_in_lbs" BIGINT,
  "experience" BIGINT,
  "college" VARCHAR,
  "profile_url" VARCHAR
);

Share link

Anyone who has the link will be able to view this.