Skip to contents

AHL game summary – named list of data frames (details, scoring, penalties, shots_by_period, three_stars).

Usage

ahl_game_summary(game_id)

Arguments

game_id

Numeric AHL game identifier.

Value

A named list of data frames.

Examples

 try(ahl_game_summary(game_id = 1000093924)) 
#> $game
#> # A tibble: 1 × 6
#>      game_id date  status venue home_team away_team
#>        <dbl> <chr> <chr>  <chr> <chr>     <chr>    
#> 1 1000093924 NA    NA     NA    NA        NA       
#> 
#> $goals
#> data frame with 0 columns and 0 rows
#> 
#> $penalties
#> data frame with 0 columns and 0 rows
#> 
#> $shots_by_period
#> data frame with 0 columns and 0 rows
#> 
#> $three_stars
#> data frame with 0 columns and 0 rows
#>