Returns NHL Teams stats information for a given team ID

nhl_teams_stats(team_id)

Arguments

team_id

A unique team ID

Value

Returns a tibble

Examples

# \donttest{
  nhl_teams_stats(team_id = 14)
#> # A tibble: 2 × 38
#>   splits_stat_games_played splits_stat_wins splits_stat_losses splits_stat_ot
#>                      <int> <list>           <list>             <list>        
#> 1                       13 <int [1]>        <int [1]>          <int [1]>     
#> 2                       NA <chr [1]>        <chr [1]>          <chr [1]>     
#> # … with 34 more variables: splits_stat_pts <list>, splits_stat_pt_pctg <chr>,
#> #   splits_stat_goals_per_game <list>,
#> #   splits_stat_goals_against_per_game <list>, splits_stat_ev_gga_ratio <list>,
#> #   splits_stat_power_play_percentage <chr>,
#> #   splits_stat_power_play_goals <list>,
#> #   splits_stat_power_play_goals_against <list>,
#> #   splits_stat_power_play_opportunities <list>, …
# }