Get list of NFL positions
Value
cfbd_draft_positions()
- A data frame with 2 variables:
position_name
: character.NFL Position group name.
position_abbreviation
: integerNFL position group abbreviation.
See also
Other CFBD Draft:
cfbd_draft_picks()
,
cfbd_draft_teams()
Examples
# \donttest{
try(cfbd_draft_positions())
#> ── NFL positions data from CollegeFootballData.com ─────────── cfbfastR 2.0.0 ──
#> ℹ Data updated: 2025-08-25 19:40:16 UTC
#> # A tibble: 29 × 2
#> position_name position_abbreviation
#> <chr> <chr>
#> 1 Center C
#> 2 Cornerback CB
#> 3 Defensive Back DB
#> 4 Defensive Edge EDGE
#> 5 Defensive End DE
#> 6 Defensive Lineman DL
#> 7 Defensive Tackle DT
#> 8 Free Safety FS
#> 9 Fullback FB
#> 10 Inside Linebacker ILB
#> # ℹ 19 more rows
# }