Baselight

NHL Stanley Cup Playoffs (1918 - 2022)

Data from every NHL Stanley Cup playoff game (1918 - 2022)

@kaggle.mattop_nhl_stanley_cup_playoffs_1918_2022

Nhlplayoffs
@kaggle.mattop_nhl_stanley_cup_playoffs_1918_2022.nhlplayoffs

  • 19.37 KB
  • 1009 rows
  • 13 columns
rank

Rank

team

Team

year

Year

games

Games

wins

Wins

losses

Losses

ties

Ties

shootout_wins

Shootout Wins

shootout_losses

Shootout Losses

win_loss_percentage

Win Loss Percentage

goals_scored

Goals Scored

goals_against

Goals Against

goal_differential

Goal Differential

1Colorado Avalanche202220164510.8855530
2Tampa Bay Lightning202223149120.60967616
3New York Rangers2022201010120.562584
4Edmonton Oilers20221688120.565596
5Carolina Hurricanes2022147710.53740-3
6St. Louis Blues20221266110.540382
7Calgary Flames20221257110.4173539-4
8Florida Panthers2022104620.42332-9
9Boston Bruins20227340.4292024-4
10Los Angeles Kings202273410.4291727-10

CREATE TABLE nhlplayoffs (
  "rank" BIGINT,
  "team" VARCHAR,
  "year" BIGINT,
  "games" BIGINT,
  "wins" BIGINT,
  "losses" BIGINT,
  "ties" BIGINT,
  "shootout_wins" BIGINT,
  "shootout_losses" BIGINT,
  "win_loss_percentage" DOUBLE,
  "goals_scored" BIGINT,
  "goals_against" BIGINT,
  "goal_differential" BIGINT
);

Share link

Anyone who has the link will be able to view this.