League Of Legends Diamond Ranked Games (10 Min)
Classify LoL ranked games outcome by looking at the first 10min worth of data
@kaggle.bobbyscience_league_of_legends_diamond_ranked_games_10_min
Classify LoL ranked games outcome by looking at the first 10min worth of data
@kaggle.bobbyscience_league_of_legends_diamond_ranked_games_10_min
League of Legends is a MOBA (multiplayer online battle arena) where 2 teams (blue and red) face off. There are 3 lanes, a jungle, and 5 roles. The goal is to take down the enemy Nexus to win the game.
This dataset contains the first 10min. stats of approx. 10k ranked games (SOLO QUEUE) from a high ELO (DIAMOND I to MASTER). Players have roughly the same level.
Each game is unique. The gameId can help you to fetch more attributes from the Riot API.
There are 19 features per team (38 in total) collected after 10min in-game. This includes kills, deaths, gold, experience, level... It's up to you to do some feature engineering to get more insights.
The column blueWins is the target value (the value we are trying to predict). A value of 1 means the blue team has won. 0 otherwise.
So far I know, there is no missing value.
Thanks, Rito Gaming.
CREATE TABLE high_diamond_ranked_10min (
"gameid" BIGINT,
"bluewins" BIGINT,
"bluewardsplaced" BIGINT,
"bluewardsdestroyed" BIGINT,
"bluefirstblood" BIGINT,
"bluekills" BIGINT,
"bluedeaths" BIGINT,
"blueassists" BIGINT,
"blueelitemonsters" BIGINT,
"bluedragons" BIGINT,
"blueheralds" BIGINT,
"bluetowersdestroyed" BIGINT,
"bluetotalgold" BIGINT,
"blueavglevel" DOUBLE,
"bluetotalexperience" BIGINT,
"bluetotalminionskilled" BIGINT,
"bluetotaljungleminionskilled" BIGINT,
"bluegolddiff" BIGINT,
"blueexperiencediff" BIGINT,
"bluecspermin" DOUBLE,
"bluegoldpermin" DOUBLE,
"redwardsplaced" BIGINT,
"redwardsdestroyed" BIGINT,
"redfirstblood" BIGINT,
"redkills" BIGINT,
"reddeaths" BIGINT,
"redassists" BIGINT,
"redelitemonsters" BIGINT,
"reddragons" BIGINT,
"redheralds" BIGINT,
"redtowersdestroyed" BIGINT,
"redtotalgold" BIGINT,
"redavglevel" DOUBLE,
"redtotalexperience" BIGINT,
"redtotalminionskilled" BIGINT,
"redtotaljungleminionskilled" BIGINT,
"redgolddiff" BIGINT,
"redexperiencediff" BIGINT,
"redcspermin" DOUBLE,
"redgoldpermin" DOUBLE
);Anyone who has the link will be able to view this.