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: 2024-09-10 01:24:23 UTC
#> # A tibble: 2,144 × 3
#>     year school     talent
#>    <int> <chr>       <dbl>
#>  1  2024 Alabama     1018.
#>  2  2024 Georgia     1007.
#>  3  2024 Ohio State   999.
#>  4  2024 Texas        954.
#>  5  2024 Clemson      925.
#>  6  2024 Oregon       917.
#>  7  2024 Texas A&M    915.
#>  8  2024 Oklahoma     907.
#>  9  2024 LSU          906.
#> 10  2024 Notre Dame   906.
#> # ℹ 2,134 more rows

  try(cfbd_team_talent(year = 2018))
#> ── 247sports team talent ratings from CollegeFootballData.com ──────────────────
#>  Data updated: 2024-09-10 01:24:23 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.
#> # ℹ 227 more rows
# }