Skip to contents

Get Points Added Above Replacement (PAAR) ratings for kickers

Usage

cfbd_metrics_wepa_players_kicking(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_players_kicking() - A data frame with 7 variables:

col_nametypes
yearinteger
athlete_idcharacter
athlete_namecharacter
teamcharacter
conferencecharacter
paarnumeric
attemptsinteger

Examples

# \donttest{
  try(cfbd_metrics_wepa_players_kicking(year = 2019, team = "TCU"))
#> ── Points Added Above Replacement (PAAR) ratings for kicking data from CollegeFo
#>  Data updated: 2025-08-25 19:40:43 UTC
#> # A tibble: 2 × 7
#>    year athlete_id athlete_name  team  conference  paar attempts
#>   <int> <chr>      <chr>         <chr> <chr>      <dbl>    <int>
#> 1  2019 3929311    Jonathan Song TCU   Big 12     10.2        24
#> 2  2019 4574573    Griffin Kell  TCU   Big 12      2.85        4
# }