Top 264 Speedrun.com Leaderboard Stats
Scraped leaderboards for top 264 games on speedrun.com
@kaggle.asaniczka_top_264_speedrun_com_leaderboard_stats
Scraped leaderboards for top 264 games on speedrun.com
@kaggle.asaniczka_top_264_speedrun_com_leaderboard_stats
This dataset provides a comprehensive collection of speedrun leaderboards from the popular speedrunning website Speedrun.com.
It includes both gamewide category leaderboards and level-specific category leaderboards.
With this dataset, you can explore various aspects of the speedrunning community, such as fastest completion times, verified runs, timing types, platforms used, player information, and more.
If you find this dataset valuable, don't forget to hit the upvote button! 😊💝
For each game, there are 2 main types of leaderboards.
Per level leaderboards are futher divided into different categories. Depending on the game, there maybe multiple categories for each level and each category will contain it's own leaderboard.
So, a unique leaderboard is either game_id + category_id or game_id + level_id + category_id
place column refers to the players rank in that leaderboard
CREATE TABLE full_speedrun_dataset (
  "run_id" VARCHAR,
  "player_id" VARCHAR,
  "place" BIGINT,
  "speedrun_time" DOUBLE,
  "is_verified" BOOLEAN,
  "verify_date" TIMESTAMP,
  "submitted_date" TIMESTAMP,
  "examiner_id" VARCHAR,
  "timing_type" VARCHAR,
  "platform_id" VARCHAR,
  "platform_name" VARCHAR,
  "platform_released_year" DOUBLE,
  "is_level_cat" BOOLEAN,
  "level_id" VARCHAR,
  "level_name" VARCHAR,
  "level_rules" VARCHAR,
  "game_id" VARCHAR,
  "category_id" VARCHAR,
  "cat_name" VARCHAR,
  "cat_rules" VARCHAR,
  "player_name" VARCHAR,
  "player_country" VARCHAR,
  "player_pronouns" VARCHAR,
  "player_signup_date" TIMESTAMP,
  "game_name" VARCHAR
);Anyone who has the link will be able to view this.