
Get opponent-adjusted team season statistics for predicted points added (PPA)
Source:R/cfbd_metrics.R
cfbd_metrics_wepa_team_season.Rd
Get opponent-adjusted team season statistics for predicted points added (PPA)
Arguments
- year
(Integer required): Year, 4 digit format (YYYY)
- team
(String optional): D-I Team
- conference
(String optional): Conference abbreviation - Select a valid FBS conference Conference abbreviations P5: ACC, B12, B1G, SEC, PAC Conference abbreviations G5 and FBS Independents: CUSA, MAC, MWC, Ind, SBC, AAC
Value
cfbd_metrics_wepa_team_season()
- A data frame with 26 variables:
col_name | types |
year | integer |
team_id | integer |
team | character |
conference | character |
explosiveness | numeric |
explosiveness_allowed | numeric |
epa_total | numeric |
epa_passing | numeric |
epa_rushing | numeric |
epa_allowed_total | numeric |
epa_allowed_passing | numeric |
epa_allowed_rushing | numeric |
success_rate_total | numeric |
success_rate_standard_downs | numeric |
success_rate_passing_downs | numeric |
success_rate_allowed_total | numeric |
success_rate_allowed_standard_downs | numeric |
success_rate_allowed_passing_downs | numeric |
rushing_line_yards | numeric |
rushing_second_level_yards | numeric |
rushing_open_field_yards | numeric |
rushing_highlight_yards | numeric |
rushing_allowed_line_yards | numeric |
rushing_allowed_second_level_yards | numeric |
rushing_allowed_open_field_yards | numeric |
rushing_allowed_highlight_yards | numeric |
See also
Other CFBD Metrics:
cfbd_metrics_fg_ep()
,
cfbd_metrics_ppa_games()
,
cfbd_metrics_ppa_players_games()
,
cfbd_metrics_ppa_players_season()
,
cfbd_metrics_ppa_predicted()
,
cfbd_metrics_ppa_teams()
,
cfbd_metrics_wepa_players_kicking()
,
cfbd_metrics_wepa_players_passing()
,
cfbd_metrics_wepa_players_rushing()
,
cfbd_metrics_wp()
,
cfbd_metrics_wp_pregame()
Examples
# \donttest{
try(cfbd_metrics_wepa_team_season(year = 2019, team = "TCU"))
#> ── Opponent-adjusted team season PPA data from CollegeFootballData.com ─────────
#> ℹ Data updated: 2025-08-25 19:40:46 UTC
#> # A tibble: 1 × 26
#> year team_id team conference explosiveness explosiveness_allowed epa_total
#> <int> <int> <chr> <chr> <dbl> <dbl> <dbl>
#> 1 2019 2628 TCU B12 1.01 0.987 0.158
#> # ℹ 19 more variables: epa_passing <dbl>, epa_rushing <dbl>,
#> # epa_allowed_total <dbl>, epa_allowed_passing <dbl>,
#> # epa_allowed_rushing <dbl>, success_rate_total <dbl>,
#> # success_rate_standard_downs <dbl>, success_rate_passing_downs <dbl>,
#> # success_rate_allowed_total <dbl>,
#> # success_rate_allowed_standard_downs <dbl>,
#> # success_rate_allowed_passing_downs <dbl>, rushing_line_yards <dbl>, …
# }