Get the latest roster for any team from hockey-reference.com.
You may enter either the team abbreviation or the full team name. Seasons
must be 4-digit integers denoting the end-year of the regular season
desired (ie 2021-22 season should be 2022)
Please note that this uses the hockey-reference.com team abbreviations,
the oddest of which is Vegas being 'VEG' instead of 'VGK'. If you are
unsure of the team abbreviation, enter the full team name instead, or
check the full team abbreviations data and filter to your desired season:filter(team_abbr_yearly, season_short == {season})
get_rosters(
team = "all",
season = as.numeric(format(Sys.Date() + 184, "%Y")),
include_stats = FALSE
)
A character vector of team names or abbreviations
An integer value denoting the end year of the season to scrape
Set to TRUE to return player counting stats for the season
A tibble containing the latest roster for the specified team(s) in the specified season
if (FALSE) {
get_rosters("SEA", 2022)
}