Get college football mapping for play types
Value
cfbd_play_types() - A data frame with 48 rows and 3 variables:
| col_name | types | description |
| play_type_id | integer | CFBD play type identifier (matches play_type IDs in cfbd_plays()). |
| text | character | Human-readable play type description (e.g. "Rush", "Pass Reception", "Field Goal"). |
| abbreviation | character | Short play type abbreviation used as the play_type filter argument in API calls. |
Examples
# \donttest{
try(cfbd_play_types())
#> ── Play types data from CollegeFootballData.com ────────────── cfbfastR 2.3.0 ──
#> ℹ Data updated: 2026-06-09 07:54:58 UTC
#> # A tibble: 49 × 3
#> play_type_id text abbreviation
#> <int> <chr> <chr>
#> 1 5 Rush RUSH
#> 2 24 Pass Reception REC
#> 3 3 Pass Incompletion NA
#> 4 53 Kickoff K
#> 5 52 Punt PUNT
#> 6 8 Penalty PEN
#> 7 21 Timeout TO
#> 8 7 Sack NA
#> 9 68 Rushing Touchdown TD
#> 10 67 Passing Touchdown TD
#> # ℹ 39 more rows
# }
