Baselight

2022 NFL Team Offense

2022 NFL Team Offense (Week 9 - Updated Weekly)

@kaggle.mattop_2022nfl_team_offense

Nfloffenseweek5
@kaggle.mattop_2022nfl_team_offense.nfloffenseweek5

  • 24.08 KB
  • 32 rows
  • 28 columns
rank

Rank

team

Team

games

Games

points_scored

Points Scored

total_yards

Total Yards

offensive_plays

Offensive Plays

yards_per_play

Yards Per Play

turnovers_lost

Turnovers Lost

fumbles_lost

Fumbles Lost

n_1st_downs

1st Downs

passes_completed

Passes Completed

passes_attempted

Passes Attempted

passing_yards

Passing Yards

passing_touchdowns

Passing Touchdowns

passing_interceptions

Passing Interceptions

net_yards_per_pass_attempt

Net Yards Per Pass Attempt

passing_1st_downs

Passing 1st Downs

rushing_attempts

Rushing Attempts

rushing_yards

Rushing Yards

rushing_touchdowns

Rushing Touchdowns

rushing_yards_per_attempt

Rushing Yards Per Attempt

rushing_1st_downs

Rushing 1st Downs

penalties

Penalties

penalty_yards

Penalty Yards

n_1st_down_penalties

1st Down Penalties

percentage_scoring_drives

Percentage Scoring Drives

percentage_turnover_drives

Percentage Turnover Drives

expected_points

Expected Points

1Kansas City Chiefs515919073265.84212412619013361526.78012857144.5302422814505.872.06
2Buffalo Bills515222023296.79512013520616201447.67811558235.13329195947.21770.22
3Detroit Lions514020593336.26210711218713021146.76613975775.43230270937.910.331.13
4Baltimore Ravens513817622916.161999514910391256.64613372335.44423162943.610.936.86
5Philadelphia Eagles513520993565.921221081591299427.661186800124.35229223940.73.755.51
6Cleveland Browns513319823465.7411231031611020536.158180962105.35732249845.17.857.31
7Seattle Seahawks512718402776.674981181581230937.45711061045.530443911144.710.647.51
8Las Vegas Raiders512518033125.8511051141851196846.16211560735.33534247853.110.234.91
9Los Angeles Chargers512219523335.94210313320014561027.16812849643.926251789405.533.03
10Atlanta Falcons511816572975.68410571123834446.24516282375.146221691440.415.434.67

CREATE TABLE nfloffenseweek5 (
  "rank" BIGINT,
  "team" VARCHAR,
  "games" BIGINT,
  "points_scored" BIGINT,
  "total_yards" BIGINT,
  "offensive_plays" BIGINT,
  "yards_per_play" DOUBLE,
  "turnovers_lost" BIGINT,
  "fumbles_lost" BIGINT,
  "n_1st_downs" BIGINT,
  "passes_completed" BIGINT,
  "passes_attempted" BIGINT,
  "passing_yards" BIGINT,
  "passing_touchdowns" BIGINT,
  "passing_interceptions" BIGINT,
  "net_yards_per_pass_attempt" DOUBLE,
  "passing_1st_downs" BIGINT,
  "rushing_attempts" BIGINT,
  "rushing_yards" BIGINT,
  "rushing_touchdowns" BIGINT,
  "rushing_yards_per_attempt" DOUBLE,
  "rushing_1st_downs" BIGINT,
  "penalties" BIGINT,
  "penalty_yards" BIGINT,
  "n_1st_down_penalties" BIGINT,
  "percentage_scoring_drives" DOUBLE,
  "percentage_turnover_drives" DOUBLE,
  "expected_points" DOUBLE
);

Share link

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