NFL 2023 Season Dataset
A collection of data from the 2022-2023 NFL Regular Season
@kaggle.ruendymendozachavez_nfl_2023_season_dataset
A collection of data from the 2022-2023 NFL Regular Season
@kaggle.ruendymendozachavez_nfl_2023_season_dataset
CREATE TABLE nfl_2023_game_results (
"week" BIGINT,
"game_id" BIGINT,
"away" VARCHAR,
"away_score" BIGINT,
"home" VARCHAR,
"home_score" BIGINT,
"total" BIGINT
);
CREATE TABLE team_stats (
"week" BIGINT,
"game_id" BIGINT,
"away" VARCHAR,
"home" VARCHAR,
"home_ppg" DOUBLE,
"away_ppg" DOUBLE,
"home_yards_ppa" DOUBLE,
"away_yards_ppa" DOUBLE,
"home_ypg" DOUBLE,
"away_ypg" DOUBLE,
"home_tom" DOUBLE,
"away_tom" DOUBLE,
"home_oypg" DOUBLE,
"away_oypg" DOUBLE,
"home_rpf" DOUBLE,
"away_rpr" DOUBLE
);
Anyone who has the link will be able to view this.