Skip to contents

Get college football conference information Pulls all college football conferences and returns as data frame

Usage

cfbd_conferences()

Value

cfbd_conferences() - A data frame with 94 rows and 5 variables:

conference_id:

Referencing conference id.

name:

Conference name.

long_name:

Long name for Conference.

abbreviation:

Conference abbreviation.

classification:

Conference classification (fbs,fcs,ii,iii)

Examples

# \donttest{
  try(cfbd_conferences())
#> ── Conference data from CollegeFootballData.com ────────────── cfbfastR 1.9.5 ──
#>  Data updated: 2024-02-01 16:00:30 UTC
#> # A tibble: 105 × 5
#>    conference_id name             long_name          abbreviation classification
#>            <int> <chr>            <chr>              <chr>        <chr>         
#>  1             1 ACC              Atlantic Coast Co… ACC          fbs           
#>  2             4 Big 12           Big 12 Conference  B12          fbs           
#>  3             5 Big Ten          Big Ten Conference B1G          fbs           
#>  4             8 SEC              Southeastern Conf… SEC          fbs           
#>  5             9 Pac-12           Pac-12 Conference  PAC          fbs           
#>  6            12 Conference USA   Conference USA     CUSA         fbs           
#>  7            15 Mid-American     Mid-American Conf… MAC          fbs           
#>  8            16 Western Athletic Western Athletic … WAC          fcs           
#>  9            17 Mountain West    Mountain West Con… MWC          fbs           
#> 10            18 FBS Independents FBS Independents   Ind          fbs           
#> # ℹ 95 more rows
# }