Spaces:
Sleeping
Sleeping
Jimin Park
commited on
Commit
·
24265ea
1
Parent(s):
21ac0ad
debug
Browse files- util/app.py +1 -11
- util/app_main_scraper.py +31 -0
- util/app_training_df_getter.py +6 -5
- util/data/feature_eng_stats.csv +0 -0
- util/data/meta_stats.csv +235 -238
- util/data/weekly_meta_stats.csv +169 -169
util/app.py
CHANGED
@@ -1,19 +1,9 @@
|
|
1 |
# app.py
|
2 |
import gradio as gr
|
3 |
-
import pandas as pd
|
4 |
-
import requests
|
5 |
import xgboost as xgb
|
6 |
from huggingface_hub import hf_hub_download
|
7 |
from app_training_df_getter import create_app_user_training_df
|
8 |
-
|
9 |
-
import time
|
10 |
-
from selenium import webdriver
|
11 |
-
from selenium.webdriver.chrome.service import Service
|
12 |
-
from selenium.webdriver.chrome.options import Options
|
13 |
-
from webdriver_manager.chrome import ChromeDriverManager
|
14 |
-
from selenium.webdriver.common.by import By
|
15 |
-
from selenium.webdriver.support.ui import WebDriverWait
|
16 |
-
from selenium.webdriver.support import expected_conditions as EC
|
17 |
|
18 |
# Define champion list for dropdowns
|
19 |
CHAMPIONS = [
|
|
|
1 |
# app.py
|
2 |
import gradio as gr
|
|
|
|
|
3 |
import xgboost as xgb
|
4 |
from huggingface_hub import hf_hub_download
|
5 |
from app_training_df_getter import create_app_user_training_df
|
6 |
+
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
# Define champion list for dropdowns
|
9 |
CHAMPIONS = [
|
util/app_main_scraper.py
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from Recent_match_scrapper import get_matches_stats
|
2 |
+
import os
|
3 |
+
import pandas as pd
|
4 |
+
import numpy as np
|
5 |
+
from Meta_scrapper import *
|
6 |
+
from helper import merge_stats, process_kda_perfect, ChampionConverter
|
7 |
+
from Player_scrapper import get_player_stats
|
8 |
+
from Weekly_meta_scrapper import *
|
9 |
+
import pandas as pd
|
10 |
+
import re
|
11 |
+
|
12 |
+
|
13 |
+
meta_stats = get_meta_stats()
|
14 |
+
weekly_meta_stats = get_weekly_meta()
|
15 |
+
|
16 |
+
# Sample data
|
17 |
+
data = {
|
18 |
+
'username': ['cat goes meow #silly'],
|
19 |
+
'region': ['vn']
|
20 |
+
}
|
21 |
+
|
22 |
+
# Create DataFrame
|
23 |
+
player_df = pd.DataFrame(data)
|
24 |
+
|
25 |
+
|
26 |
+
player_stats = get_multiple_player_stats(player_df) #save to player_stats.csv
|
27 |
+
recent_stats = get_multiple_matches_stats(player_df) #save to recent_stats.csv
|
28 |
+
merged_stats = merge_stats(recent_stats, player_stats) #save to player_stats_merged.csv
|
29 |
+
|
30 |
+
#feature engineering
|
31 |
+
training_features = create_champion_features(merged_player_stats=merged_stats, debug=None, consider_team_comp=True, test_mode=False) #save to feature_eng_stats.csv
|
util/app_training_df_getter.py
CHANGED
@@ -446,9 +446,10 @@ def create_app_user_training_df(url):
|
|
446 |
raise ValueError("Invalid URL provided")
|
447 |
|
448 |
# Extract region and username
|
449 |
-
match = re.search(r"/summoners/(\w+)/([\w\-]+)
|
450 |
if not match:
|
451 |
-
raise ValueError(f"Could not parse region and username from URL: {url}
|
|
|
452 |
|
453 |
region = match.group(1)
|
454 |
username = match.group(2)
|
@@ -525,7 +526,7 @@ def create_app_user_training_df(url):
|
|
525 |
|
526 |
|
527 |
#url = "https://www.op.gg/summoners/euw/Agurin-EUW"
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
|
|
|
446 |
raise ValueError("Invalid URL provided")
|
447 |
|
448 |
# Extract region and username
|
449 |
+
match = re.search(r"/summoners/(\w+)/([\w\-]+)", url)
|
450 |
if not match:
|
451 |
+
raise ValueError(f"Could not parse region and username from URL: {url}\n Type(url): {type(url)}")
|
452 |
+
|
453 |
|
454 |
region = match.group(1)
|
455 |
username = match.group(2)
|
|
|
526 |
|
527 |
|
528 |
#url = "https://www.op.gg/summoners/euw/Agurin-EUW"
|
529 |
+
url = "https://www.op.gg/summoners/euw/Agurin-EUW?queue_type=TOTAL"
|
530 |
+
return_value = create_app_user_training_df(url)
|
531 |
+
print("type(Return_value):", type(return_value), "\n return value: \n", return_value)
|
532 |
|
util/data/feature_eng_stats.csv
CHANGED
The diff for this file is too large to render.
See raw diff
|
|
util/data/meta_stats.csv
CHANGED
@@ -1,239 +1,236 @@
|
|
1 |
rank,champion,tier,role,win_rate,pick_rate,ban_rate,counter1,counter2,counter3
|
2 |
-
1,
|
3 |
-
2,
|
4 |
-
3,
|
5 |
-
4,
|
6 |
-
5,
|
7 |
-
6,
|
8 |
-
7,
|
9 |
-
8,
|
10 |
-
9,
|
11 |
-
10,
|
12 |
-
11,
|
13 |
-
12,Mordekaiser,2,top,0.
|
14 |
-
13,
|
15 |
-
14,
|
16 |
-
15,
|
17 |
-
16,
|
18 |
-
17,
|
19 |
-
18,
|
20 |
-
19,
|
21 |
-
20,
|
22 |
-
21,
|
23 |
-
22,
|
24 |
-
23,
|
25 |
-
24,
|
26 |
-
25,
|
27 |
-
26,
|
28 |
-
27,
|
29 |
-
28,Sion,
|
30 |
-
29,
|
31 |
-
30,
|
32 |
-
31,
|
33 |
-
32,
|
34 |
-
33,
|
35 |
-
34,
|
36 |
-
35,
|
37 |
-
36,
|
38 |
-
37,
|
39 |
-
38,
|
40 |
-
39,
|
41 |
-
40,
|
42 |
-
41,
|
43 |
-
42,
|
44 |
-
43,
|
45 |
-
44,
|
46 |
-
45,
|
47 |
-
46,
|
48 |
-
47,
|
49 |
-
48,
|
50 |
-
49,
|
51 |
-
50,
|
52 |
-
51,Yasuo,
|
53 |
-
52,
|
54 |
-
53,
|
55 |
-
54,
|
56 |
-
55,
|
57 |
-
1,
|
58 |
-
2,Wukong,1,jungle,0.
|
59 |
-
3,
|
60 |
-
4,
|
61 |
-
5,
|
62 |
-
6,
|
63 |
-
7,
|
64 |
-
8,
|
65 |
-
9,
|
66 |
-
10,
|
67 |
-
11,
|
68 |
-
12,
|
69 |
-
13,
|
70 |
-
14,
|
71 |
-
15,
|
72 |
-
16,
|
73 |
-
17,
|
74 |
-
18,
|
75 |
-
19,
|
76 |
-
20,
|
77 |
-
21,
|
78 |
-
22,
|
79 |
-
23,
|
80 |
-
24,
|
81 |
-
25,Vi,3,jungle,0.
|
82 |
-
26,
|
83 |
-
27,
|
84 |
-
28,
|
85 |
-
29,
|
86 |
-
30,
|
87 |
-
31,
|
88 |
-
32,
|
89 |
-
33,
|
90 |
-
34,
|
91 |
-
35,
|
92 |
-
36,
|
93 |
-
37,
|
94 |
-
38,
|
95 |
-
39,
|
96 |
-
40,
|
97 |
-
41,
|
98 |
-
42,
|
99 |
-
43,
|
100 |
-
44,
|
101 |
-
45,
|
102 |
-
46,
|
103 |
-
47,
|
104 |
-
48,
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
|
160 |
-
|
161 |
-
|
162 |
-
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
-
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
44,Swain,5,support,0.47590000000000005,0.0226,0.0132,Fiddlesticks,Sona,Brand
|
238 |
-
45,Hwei,5,support,0.4879,0.0086,0.008,LeBlanc,Zoe,Elise
|
239 |
-
46,Zac,5,support,0.4816,0.0053,0.0031,Taric,LeBlanc,Poppy
|
|
|
1 |
rank,champion,tier,role,win_rate,pick_rate,ban_rate,counter1,counter2,counter3
|
2 |
+
1,Darius,1,top,0.5183,0.076,0.14550000000000002,Teemo,Kennen,Quinn
|
3 |
+
2,Cassiopeia,1,top,0.5714,0.0102,0.0074,,,
|
4 |
+
3,Irelia,1,top,0.5182,0.0616,0.1427,Trundle,Poppy,Riven
|
5 |
+
4,Riven,1,top,0.5249,0.0479,0.0285,Kennen,Poppy,Gnar
|
6 |
+
5,Urgot,1,top,0.5371,0.0239,0.004,Ornn,Malphite,Irelia
|
7 |
+
6,Sett,2,top,0.5118,0.051399999999999994,0.0087,Singed,Riven,Cho'Gath
|
8 |
+
7,Aatrox,2,top,0.495,0.0849,0.09480000000000001,Udyr,Kled,Heimerdinger
|
9 |
+
8,Gnar,2,top,0.5112,0.04650000000000001,0.024700000000000003,Teemo,Sett,Gwen
|
10 |
+
9,Cho'Gath,2,top,0.5173,0.0339,0.0058,Malphite,Trundle,Mordekaiser
|
11 |
+
10,Camille,2,top,0.5136999999999999,0.0374,0.0176,Poppy,Sion,Fiora
|
12 |
+
11,Olaf,2,top,0.5335,0.0179,0.012199999999999999,Gnar,Volibear,Urgot
|
13 |
+
12,Mordekaiser,2,top,0.5047,0.050300000000000004,0.0499,Gnar,Sylas,Teemo
|
14 |
+
13,Tryndamere,3,top,0.5265,0.020499999999999997,0.013600000000000001,Gnar,Jax,Ambessa
|
15 |
+
14,Jax,3,top,0.5033,0.0461,0.07730000000000001,Gnar,Yorick,Teemo
|
16 |
+
15,Maokai,3,top,0.5012,0.0495,0.0301,Warwick,Yorick,Fiora
|
17 |
+
16,Trundle,3,top,0.5275,0.0189,0.0049,Camille,Mordekaiser,Riven
|
18 |
+
17,Renekton,3,top,0.4932,0.06480000000000001,0.0492,Urgot,Cho'Gath,Nasus
|
19 |
+
18,Kayle,3,top,0.526,0.019,0.0067,Ambessa,Sett,Malphite
|
20 |
+
19,Gragas,3,top,0.5033,0.0424,0.0199,Cho'Gath,Fiora,Sion
|
21 |
+
20,Warwick,3,top,0.5117,0.0273,0.0668,Trundle,Ornn,Volibear
|
22 |
+
21,Fiora,3,top,0.5051,0.039,0.0707,Tahm Kench,Vladimir,Ambessa
|
23 |
+
22,Teemo,3,top,0.5207999999999999,0.021099999999999997,0.033,Ambessa,Gragas,Garen
|
24 |
+
23,K'Sante,3,top,0.483,0.08070000000000001,0.08990000000000001,Cassiopeia,Kayle,Swain
|
25 |
+
24,Ambessa,3,top,0.4917,0.051100000000000007,0.1998,Pantheon,Trundle,Aurora
|
26 |
+
25,Malphite,3,top,0.5025999999999999,0.0375,0.06,Warwick,Shen,Gnar
|
27 |
+
26,Volibear,3,top,0.49810000000000004,0.0434,0.028999999999999998,Akali,Tryndamere,Kayle
|
28 |
+
27,Jayce,3,top,0.4763,0.0852,0.052300000000000006,Cho'Gath,Urgot,Quinn
|
29 |
+
28,Sion,4,top,0.49219999999999997,0.0473,0.0066,Ambessa,Aurora,Yone
|
30 |
+
29,Singed,4,top,0.5178,0.0181,0.0027,Gnar,Garen,Mordekaiser
|
31 |
+
30,Garen,4,top,0.4919,0.043,0.021,Camille,Irelia,Fiora
|
32 |
+
31,Kled,4,top,0.5168,0.0169,0.0048,Ambessa,Irelia,Gnar
|
33 |
+
32,Akali,4,top,0.5136,0.0161,0.018600000000000002,Jax,Gragas,Irelia
|
34 |
+
33,Ornn,4,top,0.49329999999999996,0.038900000000000004,0.0062,Olaf,Aurora,Shen
|
35 |
+
34,Shen,4,top,0.4949,0.0336,0.0043,Gragas,Camille,Urgot
|
36 |
+
35,Vladimir,4,top,0.5036,0.0231,0.0168,Sett,Sion,Aatrox
|
37 |
+
36,Rumble,4,top,0.5062,0.0207,0.0074,Ornn,Sett,Mordekaiser
|
38 |
+
37,Tahm Kench,4,top,0.4941,0.028300000000000002,0.0407,Ambessa,Tryndamere,Aatrox
|
39 |
+
38,Gangplank,4,top,0.495,0.0301,0.0116,Rumble,Camille,Cho'Gath
|
40 |
+
39,Yorick,4,top,0.5018,0.0222,0.0246,Tahm Kench,Gangplank,Gnar
|
41 |
+
40,Wukong,4,top,0.5167,0.0113,0.0075,Ambessa,K'Sante,
|
42 |
+
41,Gwen,4,top,0.48969999999999997,0.0321,0.0255,Warwick,Fiora,Garen
|
43 |
+
42,Pantheon,4,top,0.49920000000000003,0.021400000000000002,0.005,Maokai,Volibear,Gangplank
|
44 |
+
43,Poppy,4,top,0.4991,0.0179,0.0319,Mordekaiser,Sion,Aatrox
|
45 |
+
44,Kennen,4,top,0.5053,0.0158,0.009899999999999999,Irelia,Renekton,Gnar
|
46 |
+
45,Yone,4,top,0.47100000000000003,0.0496,0.037000000000000005,Malphite,Urgot,Warwick
|
47 |
+
46,Heimerdinger,4,top,0.5195000000000001,0.0089,0.0051,,,
|
48 |
+
47,Dr. Mundo,4,top,0.4817,0.0339,0.0184,Shen,Gwen,Ornn
|
49 |
+
48,Illaoi,5,top,0.4868,0.020099999999999996,0.045899999999999996,Garen,Ornn,Sett
|
50 |
+
49,Quinn,5,top,0.5154,0.0068000000000000005,0.0026,,,
|
51 |
+
50,Zac,5,top,0.4959,0.0123,0.0074,Maokai,Aatrox,Irelia
|
52 |
+
51,Yasuo,5,top,0.4778,0.0203,0.0348,Riven,Darius,Irelia
|
53 |
+
52,Ryze,5,top,0.5043,0.0092,0.0011,Irelia,,
|
54 |
+
53,Vayne,5,top,0.5075999999999999,0.0078000000000000005,0.0044,K'Sante,,
|
55 |
+
54,Aurora,5,top,0.47950000000000004,0.018600000000000002,0.0381,Jayce,Darius,Sett
|
56 |
+
55,Nasus,5,top,0.4828,0.0184,0.0258,K'Sante,Gnar,Sion
|
57 |
+
1,Viego,1,jungle,0.5095000000000001,0.1985,0.1543,Teemo,Amumu,Gwen
|
58 |
+
2,Wukong,1,jungle,0.5226,0.0875,0.0576,Rek'Sai,Lillia,Udyr
|
59 |
+
3,Lee Sin,1,jungle,0.5064,0.19149999999999998,0.1424,Ivern,Warwick,Zyra
|
60 |
+
4,Gwen,2,jungle,0.5431,0.012199999999999999,0.0096,Skarner,Diana,Lee Sin
|
61 |
+
5,Amumu,2,jungle,0.5274,0.030899999999999997,0.0159,Diana,Zac,Nunu & Willump
|
62 |
+
6,Diana,2,jungle,0.5178,0.0481,0.0124,Volibear,Master Yi,Skarner
|
63 |
+
7,Nocturne,2,jungle,0.5152,0.0546,0.0701,Amumu,Bel'Veth,Taliyah
|
64 |
+
8,Warwick,2,jungle,0.5207999999999999,0.035,0.0852,Kindred,Amumu,Hecarim
|
65 |
+
9,Skarner,2,jungle,0.5161,0.044800000000000006,0.1099,Zyra,Lillia,Briar
|
66 |
+
10,Hecarim,2,jungle,0.5121,0.0536,0.04,Amumu,Fiddlesticks,Bel'Veth
|
67 |
+
11,Jarvan IV,2,jungle,0.5074000000000001,0.0557,0.0159,Gwen,Volibear,Nidalee
|
68 |
+
12,Nunu & Willump,2,jungle,0.5161,0.0342,0.009300000000000001,Talon,Warwick,Fiddlesticks
|
69 |
+
13,Xin Zhao,2,jungle,0.5128,0.040999999999999995,0.0072,Nocturne,Kindred,Udyr
|
70 |
+
14,Graves,2,jungle,0.4914,0.1174,0.16210000000000002,Ivern,Bel'Veth,Sejuani
|
71 |
+
15,Lillia,2,jungle,0.5079,0.041100000000000005,0.0348,Rengar,Xin Zhao,Diana
|
72 |
+
16,Bel'Veth,2,jungle,0.5107,0.029900000000000003,0.057,Nunu & Willump,Jarvan IV,Kha'Zix
|
73 |
+
17,Udyr,3,jungle,0.511,0.028300000000000002,0.026699999999999998,Amumu,Rengar,Hecarim
|
74 |
+
18,Volibear,3,jungle,0.5135000000000001,0.0204,0.013500000000000002,Ekko,Zac,Amumu
|
75 |
+
19,Kindred,3,jungle,0.5025,0.0368,0.0332,Skarner,Nocturne,Karthus
|
76 |
+
20,Karthus,3,jungle,0.498,0.0364,0.0926,Taliyah,Udyr,Xin Zhao
|
77 |
+
21,Fiddlesticks,3,jungle,0.5078,0.0217,0.0128,Nocturne,Kindred,Elise
|
78 |
+
22,Kha'Zix,3,jungle,0.4864,0.0655,0.0553,Ivern,Wukong,Nocturne
|
79 |
+
23,Elise,3,jungle,0.4878,0.0565,0.0682,Taliyah,Warwick,Skarner
|
80 |
+
24,Talon,3,jungle,0.5044,0.0225,0.0068000000000000005,Rengar,Hecarim,Lillia
|
81 |
+
25,Vi,3,jungle,0.4853,0.0596,0.0171,Kindred,Kayn,Gragas
|
82 |
+
26,Briar,3,jungle,0.5014,0.024300000000000002,0.0215,Master Yi,Kayn,Hecarim
|
83 |
+
27,Kayn,3,jungle,0.4832,0.0593,0.0467,Fiddlesticks,Shyvana,Evelynn
|
84 |
+
28,Ekko,3,jungle,0.4879,0.042699999999999995,0.0078000000000000005,Amumu,Kha'Zix,Skarner
|
85 |
+
29,Zyra,4,jungle,0.5032,0.017,0.011699999999999999,Wukong,Karthus,Nidalee
|
86 |
+
30,Rek'Sai,4,jungle,0.5013000000000001,0.018500000000000003,0.009000000000000001,Skarner,Diana,Zac
|
87 |
+
31,Zac,4,jungle,0.4868,0.0354,0.0212,Diana,Lillia,Bel'Veth
|
88 |
+
32,Ivern,4,jungle,0.5021,0.013999999999999999,0.0084,Shaco,Karthus,Hecarim
|
89 |
+
33,Master Yi,4,jungle,0.4838,0.0364,0.0576,Sejuani,Evelynn,Talon
|
90 |
+
34,Nidalee,4,jungle,0.4764,0.0483,0.0444,Udyr,Kindred,Sejuani
|
91 |
+
35,Evelynn,4,jungle,0.491,0.0203,0.0322,Skarner,Jarvan IV,Nocturne
|
92 |
+
36,Rengar,4,jungle,0.48460000000000003,0.0268,0.0501,Hecarim,Nocturne,Fiddlesticks
|
93 |
+
37,Taliyah,4,jungle,0.49200000000000005,0.017,0.0044,Zac,Kayn,Skarner
|
94 |
+
38,Shaco,5,jungle,0.4664,0.0432,0.136,Lillia,Bel'Veth,Warwick
|
95 |
+
39,Poppy,5,jungle,0.5,0.006500000000000001,0.0116,,,
|
96 |
+
40,Shyvana,5,jungle,0.4867,0.0129,0.0031,Nocturne,Hecarim,Skarner
|
97 |
+
41,Qiyana,5,jungle,0.4946,0.0066,0.0016,Lee Sin,,
|
98 |
+
42,Teemo,5,jungle,0.4954,0.0055000000000000005,0.0085,Lee Sin,,
|
99 |
+
43,Sejuani,5,jungle,0.4702,0.021400000000000002,0.0026,Wukong,Ekko,Lee Sin
|
100 |
+
44,Zed,5,jungle,0.47600000000000003,0.0113,0.0241,Wukong,Elise,Lee Sin
|
101 |
+
45,Pantheon,5,jungle,0.4857,0.0074,0.0017000000000000001,Graves,Viego,Lee Sin
|
102 |
+
46,Rammus,5,jungle,0.47659999999999997,0.010700000000000001,0.0252,Viego,,
|
103 |
+
47,Gragas,5,jungle,0.4598,0.0259,0.0121,Kindred,Lillia,Zac
|
104 |
+
48,Ambessa,5,jungle,0.4725,0.0073,0.0285,Wukong,Graves,Lee Sin
|
105 |
+
1,Viktor,1,mid,0.5036,0.1384,0.3336,Naafiri,Ambessa,Zoe
|
106 |
+
2,Cassiopeia,1,mid,0.5392,0.0216,0.015700000000000002,Irelia,Zed,Yasuo
|
107 |
+
3,Zoe,1,mid,0.5327000000000001,0.0296,0.0132,Ekko,Malzahar,Yone
|
108 |
+
4,Sylas,1,mid,0.5039,0.1063,0.0922,Malzahar,Cassiopeia,Neeko
|
109 |
+
5,Lux,1,mid,0.5217,0.0374,0.0141,Azir,Zoe,Cassiopeia
|
110 |
+
6,Galio,1,mid,0.515,0.0529,0.037200000000000004,Lux,Corki,Qiyana
|
111 |
+
7,Ahri,1,mid,0.5002,0.0986,0.0353,Zoe,Kennen,Ekko
|
112 |
+
8,Irelia,1,mid,0.5141,0.038,0.08839999999999999,Azir,Veigar,Swain
|
113 |
+
9,Neeko,1,mid,0.5468999999999999,0.0089,0.0025,Aurora,,
|
114 |
+
10,Xerath,2,mid,0.5197999999999999,0.0301,0.024300000000000002,Talon,Zoe,Irelia
|
115 |
+
11,Syndra,2,mid,0.5039,0.0639,0.0387,Twisted Fate,Qiyana,Anivia
|
116 |
+
12,Vladimir,2,mid,0.5142,0.035699999999999996,0.026000000000000002,Kassadin,Syndra,Zoe
|
117 |
+
13,Akali,2,mid,0.49570000000000003,0.0836,0.0968,Naafiri,Aurelion Sol,Xerath
|
118 |
+
14,Malzahar,2,mid,0.5127,0.0336,0.0333,Lissandra,Galio,Twisted Fate
|
119 |
+
15,Taliyah,2,mid,0.523,0.0197,0.0051,Katarina,Akshan,Galio
|
120 |
+
16,Kayle,2,mid,0.5446,0.0063,0.0022,,,
|
121 |
+
17,Lissandra,2,mid,0.5123,0.0318,0.0144,Twisted Fate,Sylas,Cassiopeia
|
122 |
+
18,Vex,2,mid,0.51,0.0346,0.0525,Vladimir,Lux,Akshan
|
123 |
+
19,Aurora,2,mid,0.4963,0.0584,0.1201,Lux,Malzahar,Qiyana
|
124 |
+
20,Garen,2,mid,0.5451,0.0055000000000000005,0.0027,,,
|
125 |
+
21,LeBlanc,2,mid,0.49450000000000005,0.057999999999999996,0.2091,Cassiopeia,Kassadin,Ekko
|
126 |
+
22,Akshan,2,mid,0.5115,0.0285,0.0246,Anivia,Yasuo,Vladimir
|
127 |
+
23,Veigar,2,mid,0.5121,0.025,0.004699999999999999,Syndra,Zed,Yasuo
|
128 |
+
24,Hwei,2,mid,0.49119999999999997,0.065,0.0571,Katarina,Cassiopeia,Anivia
|
129 |
+
25,Ambessa,2,mid,0.5312,0.0068000000000000005,0.0269,,,
|
130 |
+
26,Qiyana,2,mid,0.5111,0.0242,0.0059,Vex,Xerath,Akali
|
131 |
+
27,Yasuo,2,mid,0.4855,0.0707,0.1217,Xerath,Aurelion Sol,Vel'Koz
|
132 |
+
28,Katarina,2,mid,0.48619999999999997,0.0758,0.0665,Cassiopeia,Aurelion Sol,Swain
|
133 |
+
29,Vel'Koz,2,mid,0.5207999999999999,0.0126,0.0026,Hwei,Sylas,Syndra
|
134 |
+
30,Talon,2,mid,0.5001,0.0337,0.0103,Ryze,Irelia,Qiyana
|
135 |
+
31,Anivia,3,mid,0.5051,0.0213,0.0148,Lux,LeBlanc,Aurora
|
136 |
+
32,Zed,3,mid,0.4824,0.0572,0.1225,Vex,Vladimir,Qiyana
|
137 |
+
33,Ekko,3,mid,0.4979,0.0273,0.005,Lissandra,Xerath,Aurora
|
138 |
+
34,Swain,3,mid,0.5056,0.0184,0.0084,Zed,Hwei,Ahri
|
139 |
+
35,Annie,3,mid,0.5161,0.009899999999999999,0.0017000000000000001,Katarina,Sylas,Syndra
|
140 |
+
36,Kassadin,3,mid,0.49729999999999996,0.0245,0.029300000000000003,Irelia,Galio,Lux
|
141 |
+
37,Aurelion Sol,3,mid,0.5024000000000001,0.0182,0.005699999999999999,Vladimir,Lux,Irelia
|
142 |
+
38,Ryze,3,mid,0.4974,0.023,0.0028000000000000004,Galio,Katarina,Viktor
|
143 |
+
39,Orianna,3,mid,0.48369999999999996,0.044500000000000005,0.009000000000000001,Ryze,Fizz,Cassiopeia
|
144 |
+
40,Yone,3,mid,0.46869999999999995,0.0718,0.0537,Akshan,Xerath,LeBlanc
|
145 |
+
41,Fizz,3,mid,0.4869,0.0268,0.028999999999999998,Ryze,Veigar,Galio
|
146 |
+
42,Kennen,3,mid,0.5166,0.005600000000000001,0.0034999999999999996,Sylas,,
|
147 |
+
43,Twisted Fate,3,mid,0.4864,0.0253,0.0026,Orianna,Lux,Ekko
|
148 |
+
44,Diana,3,mid,0.4828,0.0253,0.0066,Vex,Vladimir,Sylas
|
149 |
+
45,Azir,3,mid,0.4844,0.0218,0.0031,LeBlanc,Vladimir,Galio
|
150 |
+
46,Cho'Gath,3,mid,0.5109,0.0054,0.0009,Viktor,,
|
151 |
+
47,Corki,3,mid,0.4946,0.011200000000000002,0.0074,Aurora,LeBlanc,Ahri
|
152 |
+
48,Pantheon,3,mid,0.5051,0.0067,0.0016,Sylas,,
|
153 |
+
49,Brand,3,mid,0.5097999999999999,0.005,0.0026,Viktor,,
|
154 |
+
50,Naafiri,3,mid,0.496,0.0102,0.0034999999999999996,Ahri,,
|
155 |
+
51,Gragas,3,mid,0.4916,0.0089,0.0042,Ahri,Katarina,
|
156 |
+
52,Ziggs,4,mid,0.49579999999999996,0.006,0.0021,Viktor,,
|
157 |
+
53,Malphite,4,mid,0.4935,0.0062,0.009899999999999999,Sylas,,
|
158 |
+
54,Renekton,4,mid,0.48719999999999997,0.0051,0.0038,,,
|
159 |
+
55,Jayce,4,mid,0.45630000000000004,0.0192,0.0118,LeBlanc,Galio,Sylas
|
160 |
+
1,Miss Fortune,1,adc,0.5272,0.1143,0.038900000000000004,Seraphine,Hwei,Yasuo
|
161 |
+
2,Corki,1,adc,0.5202,0.0816,0.054299999999999994,Viktor,Nilah,Vayne
|
162 |
+
3,Jinx,1,adc,0.5059,0.1826,0.0369,Lux,Veigar,Miss Fortune
|
163 |
+
4,Viktor,2,adc,0.5211,0.0196,0.04769999999999999,Samira,Kai'Sa,Ezreal
|
164 |
+
5,Caitlyn,2,adc,0.49119999999999997,0.1753,0.2506,Nilah,Ziggs,Brand
|
165 |
+
6,Ezreal,2,adc,0.4917,0.1895,0.057699999999999994,Lux,Kog'Maw,Nilah
|
166 |
+
7,Vayne,2,adc,0.5186999999999999,0.0373,0.021099999999999997,Samira,Draven,Aphelios
|
167 |
+
8,Lux,3,adc,0.535,0.0106,0.004,Corki,,
|
168 |
+
9,Kog'Maw,3,adc,0.5241,0.0209,0.0102,Aphelios,Lucian,Jinx
|
169 |
+
10,Nilah,3,adc,0.5264,0.0174,0.0318,Xayah,Jinx,Ashe
|
170 |
+
11,Varus,3,adc,0.5023,0.075,0.0183,Hwei,Tristana,Lucian
|
171 |
+
12,Jhin,3,adc,0.48560000000000003,0.18109999999999998,0.0278,Brand,Lux,Samira
|
172 |
+
13,Seraphine,3,adc,0.5347,0.009399999999999999,0.0019,Jinx,Corki,
|
173 |
+
14,Draven,3,adc,0.5006,0.0646,0.2661,Twitch,Swain,Ziggs
|
174 |
+
15,Ashe,3,adc,0.48340000000000005,0.1613,0.20309999999999997,Swain,Seraphine,Twitch
|
175 |
+
16,Xayah,3,adc,0.5104,0.037599999999999995,0.0058,Vayne,Zeri,Sivir
|
176 |
+
17,Kai'Sa,3,adc,0.48960000000000004,0.1241,0.0132,Seraphine,Samira,Nilah
|
177 |
+
18,Veigar,3,adc,0.5398,0.0054,0.001,Ashe,,
|
178 |
+
19,Twitch,3,adc,0.5086999999999999,0.0362,0.019299999999999998,Kog'Maw,Corki,Lucian
|
179 |
+
20,Sivir,3,adc,0.5047,0.0441,0.0078000000000000005,Kog'Maw,Viktor,Vayne
|
180 |
+
21,Lucian,3,adc,0.5006,0.0537,0.008199999999999999,Viktor,Xayah,Samira
|
181 |
+
22,Ziggs,3,adc,0.5139,0.018500000000000003,0.006500000000000001,Kai'Sa,Smolder,Jhin
|
182 |
+
23,Kalista,3,adc,0.49920000000000003,0.04190000000000001,0.021,Vayne,Zeri,Corki
|
183 |
+
24,Samira,3,adc,0.4984,0.0414,0.0436,Xayah,Sivir,Miss Fortune
|
184 |
+
25,Hwei,4,adc,0.5119,0.013300000000000001,0.011699999999999999,Corki,Kai'Sa,Jinx
|
185 |
+
26,Tristana,4,adc,0.498,0.0326,0.0034999999999999996,Smolder,Corki,Vayne
|
186 |
+
27,Zeri,4,adc,0.4965,0.0276,0.0025,Tristana,Vayne,Varus
|
187 |
+
28,Swain,4,adc,0.5061,0.0144,0.0066,Miss Fortune,Jhin,Ezreal
|
188 |
+
29,Brand,5,adc,0.5117,0.0067,0.0034999999999999996,Ezreal,Jinx,
|
189 |
+
30,Yasuo,5,adc,0.5004,0.009899999999999999,0.0172,Jinx,Corki,Kai'Sa
|
190 |
+
31,Aphelios,5,adc,0.4753,0.045700000000000005,0.0060999999999999995,Corki,Swain,Viktor
|
191 |
+
32,Karthus,5,adc,0.5006,0.0079,0.0206,Draven,Jhin,Jinx
|
192 |
+
33,Smolder,5,adc,0.4747,0.035,0.014499999999999999,Vayne,Viktor,Kog'Maw
|
193 |
+
1,Lulu,1,support,0.5155,0.1469,0.1839,Sylas,Vel'Koz,Zoe
|
194 |
+
2,Janna,1,support,0.5293,0.0706,0.0278,Elise,Zyra,Seraphine
|
195 |
+
3,Rell,2,support,0.5163,0.07519999999999999,0.0319,Taric,Maokai,Senna
|
196 |
+
4,Thresh,2,support,0.5031,0.1281,0.053099999999999994,Sona,Brand,Renata Glasc
|
197 |
+
5,Nami,2,support,0.5108,0.0941,0.0084,Zoe,Taric,Yuumi
|
198 |
+
6,Senna,2,support,0.5241,0.051100000000000007,0.0152,Poppy,Vel'Koz,Zilean
|
199 |
+
7,Braum,2,support,0.5163,0.0694,0.0661,Poppy,Soraka,Swain
|
200 |
+
8,Maokai,3,support,0.5288,0.0292,0.0174,Soraka,Janna,Braum
|
201 |
+
9,Karma,3,support,0.4988,0.1092,0.0434,Braum,Shaco,Seraphine
|
202 |
+
10,Poppy,3,support,0.5193,0.038599999999999995,0.0674,Maokai,Janna,Milio
|
203 |
+
11,Taric,3,support,0.5351,0.0178,0.0037,Braum,Janna,Alistar
|
204 |
+
12,Elise,3,support,0.5272,0.0207,0.024700000000000003,Senna,Leona,Braum
|
205 |
+
13,Pyke,3,support,0.4911,0.0839,0.34840000000000004,Maokai,Rell,Taric
|
206 |
+
14,Soraka,3,support,0.5102,0.046,0.0167,Swain,Bard,Xerath
|
207 |
+
15,Alistar,3,support,0.5123,0.040999999999999995,0.0137,Elise,Pantheon,Morgana
|
208 |
+
16,Nautilus,3,support,0.4864,0.09820000000000001,0.1245,Shaco,Renata Glasc,Hwei
|
209 |
+
17,Vel'Koz,3,support,0.517,0.0275,0.0055000000000000005,Zyra,Pyke,Sona
|
210 |
+
18,Blitzcrank,4,support,0.49479999999999996,0.0579,0.17550000000000002,Taric,Sona,Poppy
|
211 |
+
19,Milio,4,support,0.49770000000000003,0.0538,0.0271,Morgana,Senna,Maokai
|
212 |
+
20,Tahm Kench,4,support,0.5013000000000001,0.0418,0.058899999999999994,Alistar,Nami,Taric
|
213 |
+
21,Lux,4,support,0.4915,0.0593,0.0218,Taric,Alistar,Bard
|
214 |
+
22,Zyra,4,support,0.5077,0.028399999999999998,0.019299999999999998,Seraphine,Soraka,Yuumi
|
215 |
+
23,Seraphine,4,support,0.5027,0.0346,0.006999999999999999,Xerath,Bard,Pyke
|
216 |
+
24,Sona,4,support,0.5115,0.0225,0.0014000000000000002,Janna,Pyke,Leona
|
217 |
+
25,Leona,4,support,0.4867,0.0616,0.0496,Tahm Kench,Senna,Zilean
|
218 |
+
26,Bard,4,support,0.4894,0.05,0.0075,Maokai,Poppy,Thresh
|
219 |
+
27,Neeko,4,support,0.5071,0.021400000000000002,0.0059,Seraphine,Poppy,Janna
|
220 |
+
28,Renata Glasc,4,support,0.5014,0.025,0.0036,Braum,Nami,Karma
|
221 |
+
29,Rakan,4,support,0.48,0.056299999999999996,0.0060999999999999995,Seraphine,Taric,Tahm Kench
|
222 |
+
30,Xerath,4,support,0.4911,0.0318,0.0252,Milio,Nautilus,Tahm Kench
|
223 |
+
31,Morgana,4,support,0.4892,0.0288,0.09230000000000001,Maokai,Soraka,Zyra
|
224 |
+
32,Shaco,4,support,0.5015,0.0129,0.0403,Rell,Janna,Bard
|
225 |
+
33,Zilean,4,support,0.4914,0.0239,0.0074,Milio,Janna,Pyke
|
226 |
+
34,Galio,4,support,0.5153,0.0076,0.0052,Rell,Karma,
|
227 |
+
35,Yuumi,5,support,0.46740000000000004,0.0461,0.0691,Sona,Braum,Elise
|
228 |
+
36,Zac,5,support,0.5171,0.005,0.003,Lulu,,
|
229 |
+
37,Pantheon,5,support,0.48719999999999997,0.0176,0.0040999999999999995,Janna,Karma,Nautilus
|
230 |
+
38,Zoe,5,support,0.5011,0.0088,0.0038,Nautilus,Thresh,Karma
|
231 |
+
39,Swain,5,support,0.46490000000000004,0.0196,0.0088,Milio,Pyke,Bard
|
232 |
+
40,Brand,5,support,0.4637,0.0154,0.0078000000000000005,Janna,Lulu,Tahm Kench
|
233 |
+
41,Camille,5,support,0.48210000000000003,0.005699999999999999,0.0026,,,
|
234 |
+
42,Hwei,5,support,0.46990000000000004,0.0079,0.0068000000000000005,Thresh,Lulu,Karma
|
235 |
+
43,LeBlanc,5,support,0.4645,0.0077,0.0274,Pyke,Thresh,Lulu
|
236 |
+
44,Sylas,5,support,0.456,0.0123,0.0104,Janna,Nami,Rakan
|
|
|
|
|
|
util/data/weekly_meta_stats.csv
CHANGED
@@ -1,170 +1,170 @@
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
-
1,Viego,
|
3 |
-
2,Viktor,
|
4 |
-
3,Corki,
|
5 |
-
4,Jayce,
|
6 |
-
5,
|
7 |
-
6,
|
8 |
-
7,
|
9 |
-
8,
|
10 |
-
9,
|
11 |
-
10,Sylas,
|
12 |
-
11,Aurora,
|
13 |
-
12,
|
14 |
-
13,
|
15 |
-
14,Irelia,
|
16 |
-
15,
|
17 |
-
16,Graves,
|
18 |
-
17,
|
19 |
-
18,Wukong,
|
20 |
-
19,
|
21 |
-
20,
|
22 |
-
21,
|
23 |
-
22,Akali,
|
24 |
-
23,
|
25 |
-
24,
|
26 |
-
25,
|
27 |
-
26,
|
28 |
-
27,
|
29 |
-
28,
|
30 |
-
29,Karma,
|
31 |
-
30,
|
32 |
-
31,
|
33 |
-
32,
|
34 |
-
33,
|
35 |
-
34,
|
36 |
-
35,Jax,
|
37 |
-
36,
|
38 |
-
37,
|
39 |
-
38,
|
40 |
-
39,
|
41 |
-
40,
|
42 |
-
41,
|
43 |
-
42,
|
44 |
-
43,
|
45 |
-
44,
|
46 |
-
45,
|
47 |
-
46,
|
48 |
-
47,
|
49 |
-
48,
|
50 |
-
49,
|
51 |
-
50,
|
52 |
-
51,
|
53 |
-
52,
|
54 |
-
53,Zyra,
|
55 |
-
54,Janna,
|
56 |
-
55,
|
57 |
-
56,
|
58 |
-
57,
|
59 |
-
58,
|
60 |
-
59,
|
61 |
-
60,Braum,148,3.
|
62 |
-
61,
|
63 |
-
62,
|
64 |
-
63,
|
65 |
-
64,
|
66 |
-
65,Gwen,
|
67 |
-
66,
|
68 |
-
67,
|
69 |
-
68,
|
70 |
-
69,
|
71 |
-
70,Senna,137,2.
|
72 |
-
71,
|
73 |
-
72,
|
74 |
-
73,Rumble,
|
75 |
-
74,
|
76 |
-
75,
|
77 |
-
76,
|
78 |
-
77,
|
79 |
-
78,Garen,
|
80 |
-
79,
|
81 |
-
80,
|
82 |
-
81,Vladimir,
|
83 |
-
82,
|
84 |
-
83,Kennen,
|
85 |
-
84,
|
86 |
-
85,
|
87 |
-
86,
|
88 |
-
87,Xin Zhao,
|
89 |
-
88,
|
90 |
-
89,
|
91 |
-
90,Kayn,94,2.
|
92 |
-
91,
|
93 |
-
92,
|
94 |
-
93,
|
95 |
-
94,
|
96 |
-
95,
|
97 |
-
96,
|
98 |
-
97,
|
99 |
-
98,
|
100 |
-
99,
|
101 |
-
100,
|
102 |
-
101,
|
103 |
-
102,
|
104 |
-
103,
|
105 |
-
104,
|
106 |
-
105,
|
107 |
-
106,
|
108 |
-
107,
|
109 |
-
108,
|
110 |
-
109,
|
111 |
-
110,
|
112 |
-
111,
|
113 |
-
112,
|
114 |
-
113,
|
115 |
-
114,
|
116 |
-
115,
|
117 |
-
116,Fiddlesticks,
|
118 |
-
117,
|
119 |
-
118,
|
120 |
-
119,Malphite,66,2.
|
121 |
-
120,
|
122 |
-
121,
|
123 |
-
122,
|
124 |
-
123,
|
125 |
-
124,
|
126 |
-
125,
|
127 |
-
126,
|
128 |
-
127,
|
129 |
-
128,
|
130 |
-
129,
|
131 |
-
130,
|
132 |
-
131,
|
133 |
-
132,
|
134 |
-
133,
|
135 |
-
134,
|
136 |
-
135,
|
137 |
-
136,
|
138 |
-
137,
|
139 |
-
138,
|
140 |
-
139,
|
141 |
-
140,
|
142 |
-
141,
|
143 |
-
142,
|
144 |
-
143,
|
145 |
-
144,
|
146 |
-
145,
|
147 |
-
146,
|
148 |
-
147,
|
149 |
-
148,
|
150 |
-
149,
|
151 |
-
150,Fizz,36,2.
|
152 |
-
151,
|
153 |
-
152,
|
154 |
-
153,
|
155 |
-
154,
|
156 |
-
155,
|
157 |
-
156,
|
158 |
-
157,
|
159 |
-
158,
|
160 |
-
159,
|
161 |
-
160,
|
162 |
-
161,
|
163 |
-
162,
|
164 |
-
163,
|
165 |
-
164,
|
166 |
-
165,Amumu,
|
167 |
-
166,
|
168 |
-
167,
|
169 |
-
168,Illaoi,
|
170 |
-
169,Naafiri,
|
|
|
1 |
rank,champion,games,KDA,WR,pick,ban,cs,gold
|
2 |
+
1,Viego,685,3.23,52.55,27.13,22.02,177.99,11652
|
3 |
+
2,Viktor,681,2.52,52.57,26.97,37.78,207.05,11314
|
4 |
+
3,Corki,554,2.64,51.99,21.94,12.91,214.86,11849
|
5 |
+
4,Jayce,537,2.1,49.16,21.27,5.46,191.1,10769
|
6 |
+
5,Ezreal,476,2.58,46.43,18.85,7.95,199.53,11042
|
7 |
+
6,Lee Sin,475,3.36,52.42,18.81,9.66,161.51,11211
|
8 |
+
7,K'Sante,445,2.51,53.48,17.62,12.67,182.8,10169
|
9 |
+
8,Yone,436,2.04,49.31,17.27,4.54,212.43,11479
|
10 |
+
9,Jhin,419,3.22,51.55,1.66,1.02,200.84,12039
|
11 |
+
10,Sylas,413,2.37,53.27,16.36,8.25,152.12,10364
|
12 |
+
11,Aurora,405,2.71,46.42,16.04,2.41,191.38,10971
|
13 |
+
12,Ambessa,390,2.14,48.97,15.44,29.24,180.71,10503
|
14 |
+
13,Ashe,365,2.56,50.41,14.46,22.34,195.39,10887
|
15 |
+
14,Irelia,361,1.54,47.65,1.43,14.17,215.94,12089
|
16 |
+
15,Varus,342,2.45,51.46,13.54,5.25,197.96,11357
|
17 |
+
16,Graves,342,3.05,50.88,13.54,18.48,196.38,12363
|
18 |
+
17,Skarner,338,3.79,53.25,13.39,26.62,139.78,9866
|
19 |
+
18,Wukong,338,2.86,51.78,13.39,8.92,181.65,11614
|
20 |
+
19,Nautilus,311,2.67,52.41,12.32,7.39,24.97,7266
|
21 |
+
20,Caitlyn,303,2.36,54.46,0.12,13.91,208.85,11935
|
22 |
+
21,Lulu,298,3.5,53.36,1.18,1.22,31.63,7464
|
23 |
+
22,Akali,288,2.61,48.61,11.41,9.85,183.09,11073
|
24 |
+
23,Renekton,281,2.17,51.25,11.13,9.32,198.07,11106
|
25 |
+
24,Yasuo,280,1.74,51.43,11.09,17.44,211.54,11587
|
26 |
+
25,Rell,276,3.37,53.26,10.93,3.05,23.38,7464
|
27 |
+
26,Poppy,274,2.43,53.28,10.85,15.43,57.24,8231
|
28 |
+
27,Talon,271,2.8,53.87,10.73,7.37,197.88,11961
|
29 |
+
28,Hwei,270,2.53,44.81,10.69,5.79,187.89,10538
|
30 |
+
29,Karma,262,3.07,53.82,10.38,3.32,44.65,8088
|
31 |
+
30,Bard,257,3.65,49.81,10.18,1.16,26.24,7615
|
32 |
+
31,Rakan,256,3.26,46.88,10.14,1.07,27.87,7429
|
33 |
+
32,Gnar,239,2.05,45.61,9.47,5.36,194.31,11042
|
34 |
+
33,Kai'Sa,239,2.59,43.51,9.47,0.88,203.39,11698
|
35 |
+
34,Jinx,236,2.54,49.58,9.35,1.84,200.29,11162
|
36 |
+
35,Jax,230,1.95,55.65,9.11,11.48,180.66,10902
|
37 |
+
36,Pyke,229,2.41,48.91,9.07,44.15,30.93,8746
|
38 |
+
37,Vi,212,3.04,50.94,0.84,1.25,163.11,10446
|
39 |
+
38,Ahri,206,2.94,50.49,8.16,2.61,192.06,10721
|
40 |
+
39,Syndra,203,2.59,51.23,8.04,0.39,206.56,11447
|
41 |
+
40,Lux,201,3.13,54.23,7.96,1.41,142.39,10068
|
42 |
+
41,Gragas,201,2.48,49.25,7.96,4.58,166.75,10045
|
43 |
+
42,Maokai,199,2.4,47.74,7.88,2.31,106.15,8406
|
44 |
+
43,Nidalee,198,3.76,55.05,7.84,8.78,173.29,11418
|
45 |
+
44,Galio,194,2.83,52.06,7.68,0.45,166.91,9825
|
46 |
+
45,Zed,188,2.79,54.26,7.44,14.38,199.98,12528
|
47 |
+
46,Camille,187,2.08,52.94,7.41,1.66,158.57,10943
|
48 |
+
47,Jarvan IV,187,3.79,50.27,7.41,1.57,161.2,10728
|
49 |
+
48,Kindred,187,2.64,4.92,7.41,8.94,174.36,11567
|
50 |
+
49,Neeko,185,2.57,48.11,7.33,1.39,59.74,8350
|
51 |
+
50,Ekko,179,3.16,49.72,7.09,2.05,198.59,11975
|
52 |
+
51,Taliyah,178,2.74,51.69,7.05,1.83,189.21,11090
|
53 |
+
52,Elise,177,2.53,46.89,7.01,9.72,105.67,10470
|
54 |
+
53,Zyra,169,3.32,5.68,6.69,6.39,197.69,11782
|
55 |
+
54,Janna,167,3.89,52.69,6.61,0.42,23.57,7468
|
56 |
+
55,Orianna,158,3.26,58.86,6.26,0.94,194.28,10518
|
57 |
+
56,Draven,158,2.15,50.63,6.26,32.37,195.15,12928
|
58 |
+
57,Zac,154,3.26,49.35,0.61,4.79,156.18,10418
|
59 |
+
58,Riven,151,2.43,56.29,5.98,8.21,202.01,11593
|
60 |
+
59,Diana,150,2.74,0.6,5.94,1.26,197.83,11927
|
61 |
+
60,Braum,148,3.26,56.76,5.86,5.31,23.49,7164
|
62 |
+
61,Blitzcrank,148,2.64,0.5,5.86,8.14,23.14,7354
|
63 |
+
62,Nami,147,3.96,48.98,5.82,0.41,23.07,7603
|
64 |
+
63,Aatrox,146,2.28,56.85,5.78,4.75,174.86,10216
|
65 |
+
64,Leona,145,2.44,48.97,5.74,1.84,25.17,7321
|
66 |
+
65,Gwen,145,1.9,46.21,5.74,2.99,202.86,11986
|
67 |
+
66,Pantheon,145,2.13,42.07,5.74,1.31,140.9,10073
|
68 |
+
67,Swain,143,3,55.24,5.66,1.26,181.74,10857
|
69 |
+
68,Kha'Zix,141,2.75,41.13,5.58,4.29,169.07,11016
|
70 |
+
69,Kalista,139,2.42,42.45,5.51,3.59,206.04,12462
|
71 |
+
70,Senna,137,2.74,53.28,5.43,0.84,32.76,8439
|
72 |
+
71,Tristana,135,2.97,60.74,5.35,0.63,200.69,12561
|
73 |
+
72,Thresh,129,3.18,54.26,5.11,3.32,26.61,7393
|
74 |
+
73,Rumble,128,2.41,52.34,5.07,1.69,183.78,10595
|
75 |
+
74,Sona,128,2.98,46.88,5.17,1.23,28.09,7720
|
76 |
+
75,Fiora,127,2.08,6.22,5.03,8.08,204.98,12151
|
77 |
+
76,Smolder,121,2.77,54.55,4.79,1.12,219.92,12021
|
78 |
+
77,Qiyana,119,2.5,55.46,4.71,3.84,176.61,11531
|
79 |
+
78,Garen,118,2.19,49.15,4.67,0.15,216.67,12256
|
80 |
+
79,Seraphine,115,2.91,46.09,4.55,1.72,101.1,8795
|
81 |
+
80,LeBlanc,115,2.59,45.22,4.55,23.68,159.7,10355
|
82 |
+
81,Vladimir,115,2.39,43.48,4.55,5.23,201.03,10822
|
83 |
+
82,Azir,113,2.55,61.06,4.48,1.37,218.57,11839
|
84 |
+
83,Kennen,111,2.1,52.25,0.44,2.54,184.78,10884
|
85 |
+
84,Miss Fortune,111,2.73,49.55,0.44,0.48,212.71,12226
|
86 |
+
85,Volibear,110,2.35,50.91,4.36,1.69,173.54,10393
|
87 |
+
86,Lucian,107,2.65,55.14,4.24,0.26,206.75,11904
|
88 |
+
87,Xin Zhao,100,2.99,0.53,3.96,0.26,164.04,10835
|
89 |
+
88,Nunu & Willump,100,2.36,0.42,3.96,3.38,143.31,9155
|
90 |
+
89,Karthus,97,2.85,62.89,3.84,14.08,201.16,12700
|
91 |
+
90,Kayn,94,2.62,56.38,3.72,4.73,173.37,11197
|
92 |
+
91,Udyr,94,2.96,55.32,3.72,5.63,185.2,10885
|
93 |
+
92,Ryze,94,2.44,54.26,3.72,0.79,211.19,11382
|
94 |
+
93,Teemo,94,2.42,52.13,3.72,2.63,207.47,11895
|
95 |
+
94,Aphelios,93,2.13,43.01,3.68,0.58,200.69,11557
|
96 |
+
95,Alistar,92,2.9,51.09,3.64,1.97,23.4,7034
|
97 |
+
96,Hecarim,92,2.96,51.09,3.64,4.45,189.28,11250
|
98 |
+
97,Bel'Veth,90,2.75,47.78,3.56,10.77,177.24,11215
|
99 |
+
98,Xerath,89,3.53,51.69,3.52,1.54,160.9,10778
|
100 |
+
99,Zoe,87,2.73,52.87,3.45,4.58,126.1,9886
|
101 |
+
100,Katarina,87,2.67,49.43,3.45,6.29,182.09,11645
|
102 |
+
101,Darius,85,2.02,52.94,3.37,8.67,197.94,11667
|
103 |
+
102,Xayah,85,2.21,44.71,3.37,0.27,229.39,12276
|
104 |
+
103,Nocturne,85,3.17,42.35,3.37,1.43,172.88,11123
|
105 |
+
104,Ziggs,84,2.84,45.24,3.33,0.48,215.73,11690
|
106 |
+
105,Trundle,83,1.56,44.58,3.29,0.23,195.75,11611
|
107 |
+
106,Tryndamere,82,2.06,57.32,3.25,2.39,229.11,12839
|
108 |
+
107,Soraka,82,3.32,52.44,3.25,1.71,30.96,7270
|
109 |
+
108,Lillia,78,3.78,58.97,3.09,1.47,198.32,11882
|
110 |
+
109,Rengar,78,2.59,0.5,3.09,21.81,179.04,11705
|
111 |
+
110,Veigar,77,2.63,50.65,3.05,0.28,194.95,11887
|
112 |
+
111,Dr. Mundo,77,2.36,42.86,3.05,0.91,194.86,10588
|
113 |
+
112,Renata Glasc,74,3.07,5.27,2.93,0.44,27.78,7277
|
114 |
+
113,Ivern,73,5.52,57.53,2.89,1.74,146.96,10355
|
115 |
+
114,Zeri,73,2.54,42.47,2.95,0.28,226.51,12038
|
116 |
+
115,Shaco,71,2.61,52.11,2.81,9.22,126.15,10554
|
117 |
+
116,Fiddlesticks,70,2.58,45.71,2.77,4.36,75.01,9324
|
118 |
+
117,Warwick,67,1.87,4.03,2.65,8.98,168.81,11055
|
119 |
+
118,Shen,66,2.64,46.97,2.61,0.35,122.29,8215
|
120 |
+
119,Malphite,66,2.15,45.45,2.61,6.19,161.06,9476
|
121 |
+
120,Tahm Kench,65,2.79,58.46,2.57,1.92,60.71,8496
|
122 |
+
121,Zilean,64,2.99,43.75,2.53,1.42,72.88,7850
|
123 |
+
122,Taric,62,2.61,48.39,2.46,0.61,35.87,7079
|
124 |
+
123,Master Yi,60,2.56,53.33,2.38,0.77,177.03,12129
|
125 |
+
124,Samira,59,2.1,54.24,2.34,2.56,182.32,12057
|
126 |
+
125,Gangplank,58,2.16,5.69,0.23,0.51,201.74,12525
|
127 |
+
126,Lissandra,58,2.61,0.5,0.23,1.15,187.67,10883
|
128 |
+
127,Kayle,57,2.32,52.63,2.26,1.31,234.33,12906
|
129 |
+
128,Cho'Gath,56,2.58,57.14,2.22,0.35,194.64,11118
|
130 |
+
129,Sett,56,1.68,48.21,2.22,0.13,168.39,10639
|
131 |
+
130,Milio,56,4.06,44.64,2.22,2.65,25.48,7281
|
132 |
+
131,Sejuani,56,2.95,42.86,2.22,0.11,141.71,8935
|
133 |
+
132,Akshan,55,2.77,54.55,2.18,5.03,185.6,12299
|
134 |
+
133,Ornn,55,2.57,50.91,2.18,0.19,167.8,9433
|
135 |
+
134,Aurelion Sol,54,3.62,57.41,2.14,0.52,212.65,11800
|
136 |
+
135,Urgot,54,1.93,4.63,2.14,1.59,190.7,11884
|
137 |
+
136,Kassadin,51,2.79,52.94,2.02,2.99,189.14,11397
|
138 |
+
137,Kog'Maw,51,2.27,35.29,2.06,0.12,197.76,11430
|
139 |
+
138,Rek'Sai,47,4,55.32,1.86,0.65,178.81,11968
|
140 |
+
139,Vayne,47,2.18,48.94,1.86,0.19,188.06,11208
|
141 |
+
140,Briar,46,2.36,0.5,1.82,1.39,152.26,11701
|
142 |
+
141,Sivir,45,2.55,53.33,1.78,0.28,214.29,11506
|
143 |
+
142,Sion,45,1.59,44.44,1.78,0.17,196.82,11287
|
144 |
+
143,Evelynn,41,3.11,60.98,1.62,3.32,160.8,10573
|
145 |
+
144,Yuumi,41,3.84,4.39,1.62,5.26,14.41,6592
|
146 |
+
145,Mordekaiser,40,2.12,6.25,1.58,1.19,173.6,10485
|
147 |
+
146,Anivia,40,2.95,0.55,1.58,0.18,183.07,10705
|
148 |
+
147,Twitch,37,2.75,45.95,1.47,0.69,151.89,11294
|
149 |
+
148,Kled,36,2.31,58.33,1.45,0.03,182.22,11719
|
150 |
+
149,Olaf,36,1.94,47.22,1.43,1.34,182.08,10686
|
151 |
+
150,Fizz,36,2.24,38.89,1.43,0.65,155.03,10824
|
152 |
+
151,Twisted Fate,34,2.91,58.82,1.35,0.33,162.15,11002
|
153 |
+
152,Vel'Koz,33,3.05,57.58,1.31,0.38,136.52,10631
|
154 |
+
153,Brand,32,2.53,53.13,1.27,0.33,142.31,9632
|
155 |
+
154,Cassiopeia,32,2.04,46.88,1.27,2.07,188.53,10504
|
156 |
+
155,Rammus,31,3.73,41.94,1.23,2.07,182.32,10988
|
157 |
+
156,Nilah,30,2.46,56.67,1.19,3.73,206.9,13259
|
158 |
+
157,Morgana,29,2.52,41.38,1.15,1.91,75.41,8346
|
159 |
+
158,Vex,25,2.75,0.6,0.99,0.19,173.32,10678
|
160 |
+
159,Annie,25,2.61,0.52,0.99,0.31,157.32,10261
|
161 |
+
160,Singed,24,2.47,0.5,0.95,0.78,160.63,9949
|
162 |
+
161,Yorick,24,1.06,29.17,0.97,0.54,176.13,9654
|
163 |
+
162,Shyvana,22,3.18,45.45,0.89,0.17,204.95,12062
|
164 |
+
163,Malzahar,21,1.97,3.81,0.83,0.94,206.86,10540
|
165 |
+
164,Heimerdinger,21,1.87,28.57,0.83,0.83,169.62,8925
|
166 |
+
165,Amumu,19,1.68,36.84,0.75,1.11,130.21,9312
|
167 |
+
166,Nasus,14,1.8,0.5,0.55,1.97,172.43,10215
|
168 |
+
167,Quinn,13,1.66,46.15,0.51,0.71,148.85,10760
|
169 |
+
168,Illaoi,13,1.39,23.08,0.51,1.19,217.69,11962
|
170 |
+
169,Naafiri,10,1.93,0.4,0.04,0.24,175.4,10393
|