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-02-01 16:01:28 UTC
#> # A tibble: 2,010 × 3
#>     year school     talent
#>    <int> <chr>       <dbl>
#>  1  2023 Alabama     1015.
#>  2  2023 Georgia      978.
#>  3  2023 Ohio State   975.
#>  4  2023 Texas A&M    926.
#>  5  2023 Clemson      918.
#>  6  2023 Texas        913.
#>  7  2023 LSU          899.
#>  8  2023 USC          896.
#>  9  2023 Oklahoma     885.
#> 10  2023 Oregon       875.
#> # ℹ 2,000 more rows

  try(cfbd_team_talent(year = 2018))
#> ── 247sports team talent ratings from CollegeFootballData.com ──────────────────
#>  Data updated: 2024-02-01 16:01:28 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
# }