Skip to contents

Loads information about college basketball conferences

Usage

load_conferences()

Value

a dataframe of information about college basketball conferences.

See also

https://john-b-edwards.github.io/cbbreadr/articles/dictionary_conferences.html for a web version of the data dictionary

dictionary_conferences for the data dictionary as bundled within the package

Issues with this data should be filed here: https://github.com/john-b-edwards/cbbd-data/issues

Examples

# \donttest{
try({ # avoid cran errors
load_conferences()
})
#>     conference_id conference_source_id                    conference_name
#>             <int>               <char>                             <char>
#>  1:             1                    3             Atlantic 10 Conference
#>  2:             2                    2          Atlantic Coast Conference
#>  3:             3                   46                    ASUN Conference
#>  4:             4                    1            America East Conference
#>  5:             5                   62       American Athletic Conference
#>  6:             6                    8                  Big 12 Conference
#>  7:             7                    4                Big East Conference
#>  8:             8                    5                 Big Sky Conference
#>  9:             9                    6               Big South Conference
#> 10:            10                    7                 Big Ten Conference
#> 11:            11                    9                Big West Conference
#> 12:            12                   10       Coastal Athletic Association
#> 13:            13                   11                     Conference USA
#> 14:            14                   45                     Horizon League
#> 15:            15                   12                         Ivy League
#> 16:            16                   13 Metro Atlantic Athletic Conference
#> 17:            17                   14            Mid-American Conference
#> 18:            18                   16    Mid-Eastern Athletic Conference
#> 19:            19                   18         Missouri Valley Conference
#> 20:            20                   44           Mountain West Conference
#> 21:            21                   19               Northeast Conference
#> 22:            22                   20             Ohio Valley Conference
#> 23:            23                   22                     Patriot League
#> 24:            24                   23            Southeastern Conference
#> 25:            25                   26   Southwestern Athletic Conference
#> 26:            26                   24                Southern Conference
#> 27:            27                   25               Southland Conference
#> 28:            28                   49                      Summit League
#> 29:            29                   27                Sun Belt Conference
#> 30:            30                   30        Western Athletic Conference
#> 31:            31                   29              West Coast Conference
#> 32:            32                   43            Division I Independents
#> 33:            33                   21                  Pac-12 Conference
#> 34:            34                   57                         Great West
#>     conference_id conference_source_id                    conference_name
#>     conference_abbreviation conference_short_name
#>                      <char>                <char>
#>  1:                    A-10                  A-10
#>  2:                     ACC                   ACC
#>  3:                    ASUN                  ASUN
#>  4:                Am. East              Am. East
#>  5:                American              American
#>  6:                  Big 12                Big 12
#>  7:                Big East              Big East
#>  8:                 Big Sky               Big Sky
#>  9:               Big South             Big South
#> 10:                 Big Ten               Big Ten
#> 11:                Big West              Big West
#> 12:                     CAA                   CAA
#> 13:                    CUSA                  CUSA
#> 14:                 Horizon               Horizon
#> 15:                     Ivy                   Ivy
#> 16:                    MAAC                  MAAC
#> 17:                     MAC                   MAC
#> 18:                    MEAC                  MEAC
#> 19:                     MVC                   MVC
#> 20:           Mountain West         Mountain West
#> 21:                     NEC                   NEC
#> 22:                     OVC                   OVC
#> 23:                 Patriot               Patriot
#> 24:                     SEC                   SEC
#> 25:                    SWAC                  SWAC
#> 26:                   SoCon                 SoCon
#> 27:               Southland             Southland
#> 28:                  Summit                Summit
#> 29:                Sun Belt              Sun Belt
#> 30:                     WAC                   WAC
#> 31:                     WCC                   WCC
#> 32:                  Indep.                Indep.
#> 33:                  Pac-12                Pac-12
#> 34:              Great West            Great West
#>     conference_abbreviation conference_short_name
# }