Skip to contents

Get goalie statistics leaders by season, game-type, and category

Usage

get_goalie_leaders(
  season = get_season_now()$seasonId,
  game_type = 2,
  category = "wins"
)

Arguments

season

integer Season in YYYYYYYY

game_type

integer Game-type where 2=regular and 3=playoffs

category

string Category e.g. wins, shutouts, savePctg, goalsAgainstAverage

Value

tibble with one row per goalie

Examples

playoff_savePctg_leaders_20242025 <- get_goalie_leaders(
  season=20242025,
  game_type=3,
  category='savePctg'
)