
Get opponent-adjusted player rushing statistics for predicted points added (PPA)
Source:R/cfbd_metrics.R
cfbd_metrics_wepa_players_rushing.RdGet 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_name | types |
| year | integer |
| athlete_id | character |
| athlete_name | character |
| position | character |
| team | character |
| conference | character |
| wepa | numeric |
| plays | integer |
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_team_season(),
cfbd_metrics_wp(),
cfbd_metrics_wp_pregame()
Examples
# \donttest{
try(cfbd_metrics_wepa_players_rushing(year = 2019, team = "TCU"))
#> ── Opponent-adjusted players rushing PPA data from CollegeFootballData.com ─────
#> ℹ Data updated: 2025-10-14 15:15:40 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
# }