NHL 2024-25 Stats/contacts
Comprehensive player performance and salary data for the 2024-25 NHL season
@kaggle.natenadeau_nhl_2024_25_statscontacts
Comprehensive player performance and salary data for the 2024-25 NHL season
@kaggle.natenadeau_nhl_2024_25_statscontacts
This dataset contains comprehensive player statistics and contract details for the 2024-25 National Hockey League (NHL) season. It merges both on-ice performance metrics and contractual information, making it valuable for fans, analysts, sports journalists, and data scientists interested in exploring hockey performance, salary cap dynamics, and advanced analytics.
CREATE TABLE nhl_2024_25_player_stats_contracts_stats (
"team" VARCHAR,
"conference" VARCHAR,
"division" VARCHAR,
"team_rk" BIGINT,
"player_name" VARCHAR,
"player_ascii" VARCHAR,
"age" DOUBLE,
"pos" VARCHAR,
"pos_grouped" VARCHAR,
"gp" BIGINT,
"length" BIGINT,
"aav" VARCHAR,
"value" VARCHAR,
"g" BIGINT,
"a" BIGINT,
"pts" BIGINT,
"n" BIGINT -- +/-,
"pim" BIGINT,
"evg" BIGINT,
"ppg" BIGINT,
"shg" BIGINT,
"gwg" BIGINT,
"ev" BIGINT,
"pp" BIGINT,
"sh" BIGINT,
"sog" BIGINT,
"spct" DOUBLE,
"tsa" BIGINT,
"toi" VARCHAR,
"toi_min" DOUBLE,
"atoi" VARCHAR,
"atoi_min" DOUBLE,
"fow" BIGINT,
"fol" BIGINT,
"fo" DOUBLE -- FO%,
"blk" BIGINT,
"hit" BIGINT,
"take" BIGINT,
"give" BIGINT,
"awards" VARCHAR
);
Anyone who has the link will be able to view this.