PWHL Standings lookup
Value
A data frame (fastRhockey_data) with the following columns:
| col_name | types | description |
| team_rank | integer | Team rank in the standings. |
| team | character | Team name. |
| team_code | character | Team abbreviation. |
| games_played | character | Games played. |
| points | character | Standings points. |
| wins | character | Wins. |
| non_reg_wins | character | Non-regulation wins. |
| losses | character | Losses. |
| non_reg_losses | character | Non-regulation losses. |
| goals_for | character | Goals scored. |
| goals_against | character | Goals against. |
| games_remaining | character | Games remaining in the season. |
| ot_wins | character | Overtime wins. |
| ot_losses | character | Overtime losses. |
| so_wins | character | Shootout wins. |
| so_losses | character | Shootout losses. |
| power_play_goals | character | Power-play goals scored. |
| power_play_goals_against | character | Power-play goals against. |
| power_plays | character | Power-play opportunities. |
| power_play_pct | character | Power-play percentage. |
| short_handed_goals | character | Short-handed goals scored. |
| short_handed_goals_against | character | Short-handed goals against. |
| times_short_handed | character | Times short-handed. |
| penalty_kill_pct | character | Penalty-kill percentage. |
Examples
# \donttest{
try(pwhl_standings(season = 2024, regular = TRUE))
#> team_rank team team_code games_played points wins non_reg_wins
#> 1 1 x - PWHL Toronto x - TOR 24 47 13 4
#> 2 2 x - PWHL Montreal x - MTL 24 41 10 3
#> 3 3 x - PWHL Boston x - BOS 24 35 8 4
#> 4 4 x - PWHL Minnesota x - MIN 24 35 8 4
#> 5 5 e - PWHL Ottawa e - OTT 24 32 8 1
#> 6 6 e - PWHL New York e - NY 24 26 5 4
#> losses non_reg_losses goals_for goals_against games_remaining ot_wins
#> 1 7 0 69 50 0 2
#> 2 6 5 60 57 0 3
#> 3 9 3 50 57 0 3
#> 4 9 3 54 54 0 2
#> 5 9 6 62 63 0 0
#> 6 12 3 53 67 0 3
#> ot_losses so_wins so_losses power_play_goals power_play_goals_against
#> 1 0 2 0 11 6
#> 2 2 0 3 13 12
#> 3 2 1 1 4 13
#> 4 3 2 0 5 20
#> 5 4 1 2 16 9
#> 6 2 1 1 19 8
#> power_plays power_play_pct short_handed_goals short_handed_goals_against
#> 1 70 15.7% 3 2
#> 2 82 15.9% 1 4
#> 3 53 7.5% 2 1
#> 4 61 8.2% 2 0
#> 5 64 25.0% 3 3
#> 6 78 24.4% 2 3
#> times_short_handed penalty_kill_pct
#> 1 73 91.8%
#> 2 75 84.0%
#> 3 65 80.0%
#> 4 61 67.2%
#> 5 64 85.9%
#> 6 70 88.6%
# }
