Skip to contents

Get opponent-adjusted player rushing statistics for predicted points added (PPA)

Usage

cfbd_metrics_wepa_players_rushing(
  year = NULL,
  team = NULL,
  conference = NULL,
  position = 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

position

(string optional): Position abbreviation of the player you are searching for. Position Group - options include:

  • Offense: QB, RB, FB, TE, OL, G, OT, C, WR

  • Defense: DB, CB, S, LB, DE, DT, NT, DL

  • Special Teams: K, P, LS, PK

Value

cfbd_metrics_wepa_players_rushing() - A data frame with 8 variables:

col_nametypes
yearinteger
athlete_idcharacter
athlete_namecharacter
positioncharacter
teamcharacter
conferencecharacter
wepanumeric
playsinteger

Examples

# \donttest{
  try(cfbd_metrics_wepa_players_rushing(year = 2019, team = "TCU"))
#> ── Opponent-adjusted players rushing PPA data from CollegeFootballData.com ─────
#>  Data updated: 2025-08-25 19:40:45 UTC
#> # A tibble: 3 × 8
#>    year athlete_id athlete_name    position team  conference  wepa plays
#>   <int> <chr>      <chr>           <chr>    <chr> <chr>      <dbl> <int>
#> 1  2019 4038533    Darius Anderson RB       TCU   Big 12      0.24   151
#> 2  2019 4038539    Sewo Olonilua   RB       TCU   Big 12      0.31   131
#> 3  2019 4427105    Max Duggan      QB       TCU   Big 12      0.49   109
# }