Skip to contents

Acquire the CFBD calculated elo ratings data by team, year, week, and conference

Usage

cfbd_ratings_elo(year = NULL, week = NULL, team = NULL, conference = NULL)

Arguments

year

(Integer optional): Year, 4 digit format (YYYY)

week

(Integer optional): Maximum Week of ratings.

team

(String optional): D-I Team

conference

(String optional): Conference abbreviation - SRS 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 6 variables:

year: integer.

Season of the SRS rating.

team: character.

Team name.

conference: character.

Conference of the team.

division: logical.

Division in the conference for the team.

rating: double.

Simple Rating System (SRS) rating.

ranking: integer.

Simple Rating System ranking within the group returned.

Examples

# \donttest{
  try(cfbd_ratings_elo(year = 2019, team = "Texas"))
#> ── ELO ratings from CollegeFootballData.com ────────────────── cfbfastR 1.9.5 ──
#>  Data updated: 2024-02-01 16:01:00 UTC
#> # A tibble: 1 × 4
#>    year team  conference   elo
#>   <int> <chr> <chr>      <int>
#> 1  2019 Texas Big 12      1866

  try(cfbd_ratings_elo(year = 2018, conference = "SEC"))
#> ── ELO ratings from CollegeFootballData.com ────────────────── cfbfastR 1.9.5 ──
#>  Data updated: 2024-02-01 16:01:00 UTC
#> # A tibble: 14 × 4
#>     year team              conference   elo
#>    <int> <chr>             <chr>      <int>
#>  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
# }