Skip to contents
  • cfbd_coaches(): A coach search function which provides coaching records and school history for a given coach.

Coach information search A coach search function which provides coaching records and school history for a given coach

Usage

cfbd_coaches(
  first = NULL,
  last = NULL,
  team = NULL,
  year = NULL,
  min_year = NULL,
  max_year = NULL
)

Arguments

first

(String optional): First name for the coach you are trying to look up

last

(String optional): Last name for the coach you are trying to look up

team

(String optional): Team - Select a valid team, D1 football

year

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

min_year

(Integer optional): Minimum Year filter (inclusive), 4 digit format (YYYY).

max_year

(Integer optional): Maximum Year filter (inclusive), 4 digit format (YYYY)

Value

Returns a tibble with 15 variables:

col_nametypesdescription
first_namecharacterFirst name of coach.
last_namecharacterLast name of coach.
hire_datecharacterHire date of coach (ISO date string from CFBD).
schoolcharacterSchool of coach for the listed season.
yearintegerFour-digit season year of record.
gamesintegerGames coached during the season.
winsintegerWins for the season.
lossesintegerLosses for the season.
tiesintegerTies for the season.
preseason_rankintegerPreseason AP rank for the school of coach (NA if unranked).
postseason_rankintegerPostseason AP rank for the school of coach (NA if unranked).
srscharacterSimple Rating System adjustment for team.
sp_overallcharacterBill Connelly's SP+ overall rating for team.
sp_offensecharacterBill Connelly's SP+ offense rating for team.
sp_defensecharacterBill Connelly's SP+ defense rating for team.

Details

cfbd_coaches(first = "Nick", last = "Saban", team = "alabama")

Examples

# \donttest{
  try(cfbd_coaches(first = "Nick", last = "Saban", team = "alabama"))
#> ── Coaches data from CollegeFootballData.com ───────────────── cfbfastR 2.3.0 ──
#>  Data updated: 2026-06-09 19:57:39 UTC
#> # A tibble: 125 × 15
#>    first_name last_name   hire_date school   year games  wins losses  ties
#>    <chr>      <chr>       <chr>     <chr>   <int> <int> <int>  <int> <int>
#>  1 M.         Griffin     NA        Alabama  1900     5     2      3     0
#>  2 G.H.       Harvey      NA        Alabama  1901     5     2      1     2
#>  3 Eli        Abbott      NA        Alabama  1902     8     4      4     0
#>  4 J.O.       Heyworth    NA        Alabama  1902     8     4      4     0
#>  5 W.B.       Blount      NA        Alabama  1903     7     3      4     0
#>  6 W.B.       Blount      NA        Alabama  1904    10     7      3     0
#>  7 Jack       Leavenworth NA        Alabama  1905    10     6      4     0
#>  8 J.W.H.     Pollard     NA        Alabama  1906     6     5      1     0
#>  9 J.W.H.     Pollard     NA        Alabama  1907     8     5      1     2
#> 10 J.W.H.     Pollard     NA        Alabama  1908     8     6      1     1
#> # ℹ 115 more rows
#> # ℹ 6 more variables: preseason_rank <int>, postseason_rank <int>, srs <dbl>,
#> #   sp_overall <dbl>, sp_offense <dbl>, sp_defense <dbl>
# }