# The NFL Scouting Combine is an annual event where prospective NFL players
# are evaluated by NFL scouts.
scoutingCombine = load_combine()
# Tidying up our position categories.
# Mostly just clumping into logical groups, but also accounting for
# year-over-year discrepancies in how the Combine groups positions.
scoutingCombine = scoutingCombine %>%
filter(!pos %in% c("P", "K", "LS")) %>%
mutate(pos = ifelse(pos %in% c("C", "G", "OG", "OT"), "OL", pos)) %>%
mutate(pos = ifelse(pos %in% c("ILB", "OLB"), "LB", pos)) %>%
mutate(pos = ifelse(pos %in% c("EDGE", "DE", "DT"), "DL", pos)) %>%
mutate(pos = ifelse(pos %in% c("CB", "CB/WR", "S", "SAF"), "DB", pos)) %>%
mutate(pos = ifelse(pos == "FB", "RB", pos))