Skip to contents

Get opponent-adjusted team season statistics for predicted points added (PPA)

Usage

cfbd_metrics_wepa_team_season(year = NULL, team = NULL, conference = NULL)

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_nametypes
yearinteger
team_idinteger
teamcharacter
conferencecharacter
explosivenessnumeric
explosiveness_allowednumeric
epa_totalnumeric
epa_passingnumeric
epa_rushingnumeric
epa_allowed_totalnumeric
epa_allowed_passingnumeric
epa_allowed_rushingnumeric
success_rate_totalnumeric
success_rate_standard_downsnumeric
success_rate_passing_downsnumeric
success_rate_allowed_totalnumeric
success_rate_allowed_standard_downsnumeric
success_rate_allowed_passing_downsnumeric
rushing_line_yardsnumeric
rushing_second_level_yardsnumeric
rushing_open_field_yardsnumeric
rushing_highlight_yardsnumeric
rushing_allowed_line_yardsnumeric
rushing_allowed_second_level_yardsnumeric
rushing_allowed_open_field_yardsnumeric
rushing_allowed_highlight_yardsnumeric

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>, …
# }