Skip to contents

Extracts team talent composite as sourced from 247 rankings

Usage

cfbd_team_talent(year = NULL)

Arguments

year

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

Value

cfbd_team_talent() - A data frame with 3 variables:

year: integer.

Season for the talent rating.

school: character.

Team name.

talent: double.

Overall roster talent points (as determined by 247Sports).

Examples

# \donttest{
  try(cfbd_team_talent())
#> ── 247sports team talent ratings from CollegeFootballData.com ──────────────────
#>  Data updated: 2022-12-13 04:02:03 UTC
#> # A tibble: 1,770 × 3
#>     year school     talent
#>    <int> <chr>       <dbl>
#>  1  2022 Alabama     1017.
#>  2  2022 Georgia      990.
#>  3  2022 Ohio State   983.
#>  4  2022 Texas A&M    947.
#>  5  2022 Clemson      943 
#>  6  2022 Texas        887.
#>  7  2022 Oregon       878.
#>  8  2022 LSU          873.
#>  9  2022 Oklahoma     870.
#> 10  2022 Notre Dame   866.
#> # … with 1,760 more rows

  try(cfbd_team_talent(year = 2018))
#> ── 247sports team talent ratings from CollegeFootballData.com ──────────────────
#>  Data updated: 2022-12-13 04:02:03 UTC
#> # A tibble: 237 × 3
#>     year school        talent
#>    <int> <chr>          <dbl>
#>  1  2018 Ohio State      984.
#>  2  2018 Alabama         979.
#>  3  2018 Georgia         964 
#>  4  2018 USC             934.
#>  5  2018 Clemson         893.
#>  6  2018 LSU             890.
#>  7  2018 Florida State   889.
#>  8  2018 Michigan        862.
#>  9  2018 Texas           861.
#> 10  2018 Notre Dame      848.
#> # … with 227 more rows
# }