get_goalie_leaders | R Documentation |
get_goalie_leaders()
retrieves information on each goalie for a given set of season
, game_type
, and category
, including but not limited to their ID, name, and statistics. Access get_seasons()
for season
reference.
get_goalie_leaders(
season = get_season_now()$seasonId,
game_type = 2,
category = "wins"
)
season |
integer in YYYYYYYY |
game_type |
integer where 2=regular and 3=playoffs |
category |
string of 'wins', 'shutouts', 'savePctg', or 'goalsAgainstAverage' |
tibble with one row per goalie
playoff_savePctg_leaders_20242025 <- get_goalie_leaders(
season=20242025,
game_type=3,
category='savePctg'
)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.