Returns the list of seasons for which standings data is available.
Value
A data frame (fastRhockey_data) with the following columns:
| col_name | types | description |
| id | integer | Season identifier (e.g., 20232024). |
| conferences_in_use | logical | Whether conferences were in use that season. |
| divisions_in_use | logical | Whether divisions were in use that season. |
| point_for_o_tloss_in_use | logical | Whether a point for overtime losses was in use. |
| regulation_wins_in_use | logical | Whether regulation wins were tracked. |
| row_in_use | logical | Whether regulation/overtime wins (ROW) were in use. |
| standings_end | character | End date of the standings period. |
| standings_start | character | Start date of the standings period. |
| ties_in_use | logical | Whether ties were in use that season. |
| wildcard_in_use | logical | Whether wildcard standings were in use. |
Examples
# \donttest{
try(nhl_standings_season())
#> ── NHL Standings Season ─────────────────────────────────── fastRhockey 1.0.0 ──
#> ℹ Data updated: 2026-06-13 04:22:04 UTC
#> # A tibble: 108 × 10
#> id conferences_in_use divisions_in_use point_for_o_tloss_in_use
#> <int> <lgl> <lgl> <lgl>
#> 1 19171918 FALSE FALSE FALSE
#> 2 19181919 FALSE FALSE FALSE
#> 3 19191920 FALSE FALSE FALSE
#> 4 19201921 FALSE FALSE FALSE
#> 5 19211922 FALSE FALSE FALSE
#> 6 19221923 FALSE FALSE FALSE
#> 7 19231924 FALSE FALSE FALSE
#> 8 19241925 FALSE FALSE FALSE
#> 9 19251926 FALSE FALSE FALSE
#> 10 19261927 FALSE TRUE FALSE
#> # ℹ 98 more rows
#> # ℹ 6 more variables: regulation_wins_in_use <lgl>, row_in_use <lgl>,
#> # standings_end <chr>, standings_start <chr>, ties_in_use <lgl>,
#> # wildcard_in_use <lgl>
# }
