Baselight

Overwatch League Stats Lab

OWL2021 - Map and Player Statistics

@kaggle.sherrytp_overwatch_league_stats_lab

Loading...
Loading...

About this Dataset

Overwatch League Stats Lab

Context

Overwatch is a 6v6 FPS (first-person shooter) team game with great variety between heroes who can be played as. Overwatch League (OWL) is the professional esports league of Overwatch. When watching the OWL matches this year, I noticed the power-rankings and predictive statistics by IBM Watson extremely intriguing, so I determined to introduce the datasets into Kaggle. I, myself, really want to replicate the predictions and rankings, then testing with the stats lab.

Content

The datasets include players, head-to-head match-ups, and maps. The player historical statistics should contain OWL games from 2018 till now. It's centered around each player, and player's picked hero, its team name, performance, match IDs, etc.

Acknowledgements

Overwatch League Stats Lab has updated and downloadable csv files. And here are some interesting and inspiring questions to look at: https://overwatchleague.com/en-us/news/23303225.

Inspiration

Other than the power rankings and outcome predictions, I plan to look at teamfight stats, first elimination, and first death to compare the team's power.

For Players:

  1. Match Report dashboard
  2. Rate Ranks dashboard: Who led the league in solo kills/10 mins in 2018 as Junkrat? (min. 60 mins played)
  3. Career Totals dashboard
  4. Single Records dashboard

For Heroes:

  1. Which 4 heroes did one play for 10% or more of his time on assault map attack rounds in the season?
  2. Which hero increased in usage from 8% at the end of Stage 4 of 2018 to over 45% in the inaugural season playoffs?

For Matches:

  1. Which team played the most matches that ended in a 3-2 score during the 2021 regular season?
  2. Which team is entering the 2021 season on a 7-map loss streak?
  3. Which team has the fastest completion time on Rialto?

Tables

Match Map Stats

@kaggle.sherrytp_overwatch_league_stats_lab.match_map_stats
  • 378.59 KB
  • 9696 rows
  • 25 columns
Loading...

CREATE TABLE match_map_stats (
  "round_start_time" TIMESTAMP,
  "round_end_time" TIMESTAMP,
  "stage" VARCHAR,
  "match_id" BIGINT,
  "game_number" BIGINT,
  "match_winner" VARCHAR,
  "map_winner" VARCHAR,
  "map_loser" VARCHAR,
  "map_name" VARCHAR,
  "map_round" BIGINT,
  "winning_team_final_map_score" BIGINT,
  "losing_team_final_map_score" BIGINT,
  "control_round_name" VARCHAR,
  "attacker" VARCHAR,
  "defender" VARCHAR,
  "team_one_name" VARCHAR,
  "team_two_name" VARCHAR,
  "attacker_payload_distance" DOUBLE,
  "defender_payload_distance" DOUBLE,
  "attacker_time_banked" DOUBLE,
  "defender_time_banked" DOUBLE,
  "attacker_control_perecent" DOUBLE,
  "defender_control_perecent" DOUBLE,
  "attacker_round_end_score" BIGINT,
  "defender_round_end_score" BIGINT
);

Phs 2021–1

@kaggle.sherrytp_overwatch_league_stats_lab.phs_2021_1
  • 1.7 MB
  • 285068 rows
  • 10 columns
Loading...

CREATE TABLE phs_2021_1 (
  "start_time" TIMESTAMP,
  "esports_match_id" BIGINT,
  "tournament_title" VARCHAR,
  "map_type" VARCHAR,
  "map_name" VARCHAR,
  "player_name" VARCHAR,
  "team_name" VARCHAR,
  "stat_name" VARCHAR,
  "hero_name" VARCHAR,
  "stat_amount" DOUBLE
);

Share link

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