Get goalie statistics by season
Usage
get_goalie_statistics(
season = get_season_now()$seasonId,
report = "summary",
teams = 1:100,
is_aggregate = FALSE,
is_game = FALSE,
dates = c("2025-01-01"),
game_types = 1:3
)
Arguments
- season
integer Season in YYYYYYYY
- report
string Report (check
get_configuration()
for possible inputs)- teams
vector of integers Team ID(s)
- is_aggregate
boolean isAggregate where TRUE=regular and playoffs combined (or multiple seasons) from multiple teams, if applicable
- is_game
boolean isGame where TRUE=rows by games and FALSE=rows by goalies
- dates
vector of strings Date(s) in 'YYYY-MM-DD' (only if paired with
is_game
)- game_types
vector of integers Game-type(s) where 1=pre-season, 2=regular, and 3=playoffs
Examples
playoff_goalie_svr_20242025 <- get_goalie_statistics(
season=20242025,
report='startedVsRelieved',
game_types=c(3)
)