NFL team names and the conferences and divisions they belong to
Format
A data frame with 36 rows and 4 variables containing NFL team level information, including franchises in multiple cities:
- team
Team abbreviation
- conf
Conference abbreviation
- division
Division name
- sdiv
Division abbreviation
This data frame is created using the teams_colors_logos
data frame of the
nflfastR
package. Please see data-raw/divisions.R
for the code to create
this data.
Examples
# \donttest{
divisions
#> # A tibble: 36 × 4
#> team conf division sdiv
#> <chr> <chr> <chr> <chr>
#> 1 ARI NFC NFC West NFCW
#> 2 ATL NFC NFC South NFCS
#> 3 BAL AFC AFC North AFCN
#> 4 BUF AFC AFC East AFCE
#> 5 CAR NFC NFC South NFCS
#> 6 CHI NFC NFC North NFCN
#> 7 CIN AFC AFC North AFCN
#> 8 CLE AFC AFC North AFCN
#> 9 DAL NFC NFC East NFCE
#> 10 DEN AFC AFC West AFCW
#> # ℹ 26 more rows
# }