Skip to contents

PWHL Teams lookup

Usage

pwhl_teams()

Value

A data frame (fastRhockey_data) with the following columns:

col_nametypesdescription
team_namecharacterFull team name.
team_idcharacterUnique team identifier.
team_codecharacterTeam abbreviation/code.
team_nicknamecharacterTeam nickname.
team_labelcharacterShort city label.
divisioncharacterDivision identifier.
team_logocharacterURL to the team logo image.

Examples

# \donttest{
  try(pwhl_teams())
#>        team_name team_id team_code  team_nickname team_label division
#> 1    PWHL Boston       1       BOS    PWHL Boston     Boston        1
#> 2 PWHL Minnesota       2       MIN PWHL Minnesota  Minnesota        1
#> 3  PWHL Montreal       3       MON  PWHL Montreal   Montreal        1
#> 4  PWHL New York       4        NY  PWHL New York   New York        1
#> 5    PWHL Ottawa       5       OTT    PWHL Ottawa     Ottawa        1
#> 6   PWHL Toronto       6       TOR   PWHL Toronto    Toronto        1
#>                                              team_logo
#> 1 https://assets.leaguestat.com/pwhl/logos/50x50/1.png
#> 2 https://assets.leaguestat.com/pwhl/logos/50x50/2.png
#> 3 https://assets.leaguestat.com/pwhl/logos/50x50/3.png
#> 4 https://assets.leaguestat.com/pwhl/logos/50x50/4.png
#> 5 https://assets.leaguestat.com/pwhl/logos/50x50/5.png
#> 6 https://assets.leaguestat.com/pwhl/logos/50x50/6.png
# }