Skip to contents

PHF Team Roster lookup

[Deprecated]

The PHF has ceased operations. This function is deprecated and will be removed in a future release.

Usage

phf_team_roster(team, season = most_recent_phf_season())

Arguments

team

Team name with nickname (e.g. Boston Pride, Buffalo Beauts)

season

Season (YYYY) to pull the team stats from, the concluding year in XXXX-YY format

Value

A named list of data frames: roster, team_staff

Examples

# \donttest{
   try(phf_team_roster(team = "Minnesota Whitecaps", season = 2023))
#> Error : `phf_team_roster()` was deprecated in fastRhockey 1.0.0 and is now
#> defunct.
#>  The PHF has ceased operations.
   try(phf_team_roster(team = "Buffalo Beauts", season = 2023))
#> Error : `phf_team_roster()` was deprecated in fastRhockey 1.0.0 and is now
#> defunct.
#>  The PHF has ceased operations.
   try(phf_team_roster(team = "Buffalo Beauts", season = 2016))
#> Error : `phf_team_roster()` was deprecated in fastRhockey 1.0.0 and is now
#> defunct.
#>  The PHF has ceased operations.
# }