Baselight

LolPredict

Can you predict if a jungler will win based on the first 4 minutes of the game

@kaggle.thomasrzeznik_lolpredict

Jungler Data
@kaggle.thomasrzeznik_lolpredict.jungler_data

  • 43.36 KB
  • 3053 rows
  • 13 columns
kills_first_4_min

Kills First 4 Min

assists_first_4_min

Assists First 4 Min

camps_cleared_first_4_min

Camps Cleared First 4 Min

gold_earned_first_4_min

Gold Earned First 4 Min

win

Win

kills_details

Kills Details

summoner_spells

Summoner Spells

champion

Champion

first_item

First Item

level_at_first_blood

Level At First Blood

firstblood

FirstBlood

gold_per_minute

Gold Per Minute

game_type

Game Type

281375true[](11, 4)ShyvanaNo Item3343.75Ranked Solo/Duo
241315[](11, 4)ViegoBlue3328.75Ranked Solo/Duo
281395true[](4, 11)KaynRed3348.75Ranked Flex
281395[](11, 4)MorganaNo Item3348.75Ranked Flex
1241635true[226988](11, 4)KaynRed4408.75Ranked Solo/Duo
1201566[198266](4, 11)NocturneRed3391.5Ranked Solo/Duo
161145true[](11, 4)AmumuGreen3286.25Ranked Solo/Duo
281395[](11, 4)ShyvanaRed4348.75Ranked Solo/Duo
281395[](11, 6)ShyvanaGreen4348.75Ranked Solo/Duo
281395true[](11, 6)HecarimBlue4348.75Ranked Solo/Duo

CREATE TABLE jungler_data (
  "kills_first_4_min" BIGINT,
  "assists_first_4_min" BIGINT,
  "camps_cleared_first_4_min" BIGINT,
  "gold_earned_first_4_min" BIGINT,
  "win" BOOLEAN,
  "kills_details" VARCHAR,
  "summoner_spells" VARCHAR,
  "champion" VARCHAR,
  "first_item" VARCHAR,
  "level_at_first_blood" BIGINT,
  "firstblood" BOOLEAN,
  "gold_per_minute" DOUBLE,
  "game_type" VARCHAR
);

Share link

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