clean_team_abbrs {nflreadr} | R Documentation |
Standardize NFL Team Abbreviations
Description
This function standardizes NFL team abbreviations to nflverse defaults. This helps for joins and plotting, especially with the new nflplotR package!
Usage
clean_team_abbrs(abbr, current_location = TRUE, keep_non_matches = TRUE)
Arguments
abbr |
a character vector of abbreviations |
current_location |
If |
keep_non_matches |
If |
Value
A character vector with the length of abbr
and cleaned team abbreviations
if they are included in team_abbr_mapping
or team_abbr_mapping_norelocate
(depending on the value of current_location
). Non matches may be replaced
with NA
(depending on the value of keep_non_matches
).
Examples
x <- c("PIE", "LAR", "PIT", "CRD", "OAK", "SL")
# use current location and keep non matches
clean_team_abbrs(x)
# keep old location and replace non matches
clean_team_abbrs(x, current_location = FALSE, keep_non_matches = FALSE)
[Package nflreadr version 1.4.1 Index]