Acquire the CFBD calculated elo ratings data by team, year, week, and conference
Usage
cfbd_ratings_elo(
year = NULL,
week = NULL,
season_type = "both",
team = NULL,
conference = NULL
)
Arguments
- year
(Integer optional): Year, 4 digit format (YYYY)
- week
(Integer optional): Maximum Week of ratings.
- season_type
(String default both): Season type - regular, postseason, both, allstar, spring_regular, spring_postseason
- team
(String optional): D-I Team
- conference
(String optional): Conference abbreviation - Elo information by conference Conference abbreviations P5: ACC, B12, B1G, SEC, PAC Conference abbreviations G5 and FBS Independents: CUSA, MAC, MWC, Ind, SBC, AAC
Value
cfbd_ratings_elo()
- A data frame with 4 variables:
col_name | types |
year | integer |
team | character |
conference | character |
elo | numeric |
See also
Other CFBD Ratings and Rankings:
cfbd_rankings()
,
cfbd_ratings_fpi()
,
cfbd_ratings_sp()
,
cfbd_ratings_sp_conference()
,
cfbd_ratings_srs()
Examples
# \donttest{
try(cfbd_ratings_elo(year = 2019, team = "Texas"))
#> ── Elo ratings from CollegeFootballData.com ────────────────── cfbfastR 2.0.0 ──
#> ℹ Data updated: 2025-08-25 19:41:07 UTC
#> # A tibble: 1 × 4
#> year team conference elo
#> <int> <chr> <chr> <dbl>
#> 1 2019 Texas Big 12 1866
try(cfbd_ratings_elo(year = 2018, conference = "SEC"))
#> ── Elo ratings from CollegeFootballData.com ────────────────── cfbfastR 2.0.0 ──
#> ℹ Data updated: 2025-08-25 19:41:09 UTC
#> # A tibble: 14 × 4
#> year team conference elo
#> <int> <chr> <chr> <dbl>
#> 1 2018 Alabama SEC 2257
#> 2 2018 Arkansas SEC 1285
#> 3 2018 Auburn SEC 1958
#> 4 2018 Florida SEC 1775
#> 5 2018 Georgia SEC 2006
#> 6 2018 Kentucky SEC 1672
#> 7 2018 LSU SEC 1850
#> 8 2018 Mississippi State SEC 1937
#> 9 2018 Missouri SEC 1851
#> 10 2018 Ole Miss SEC 1465
#> 11 2018 South Carolina SEC 1548
#> 12 2018 Tennessee SEC 1349
#> 13 2018 Texas A&M SEC 1858
#> 14 2018 Vanderbilt SEC 1551
# }