nick-leland commited on
Commit
fa7df72
·
1 Parent(s): 0a5f1f3

confidence:

Browse files
Files changed (1) hide show
  1. app.py +8 -2
app.py CHANGED
@@ -12,8 +12,14 @@ EXPECTED_COLUMNS = ['mmr', 'p1', 'p2', 'p3', 'p4', 'p5', 'count', 'mean', 'std',
12
  'total_games_played', 'total_winrate']
13
 
14
  # Add games columns
15
- games_ids = ([i for i in range(1, 115)] + # 1-114
16
- [119, 120, 121, 123, 126, 128, 129, 131, 135, 136, 137, 138, 145])
 
 
 
 
 
 
17
  EXPECTED_COLUMNS.extend([f'games_{i}' for i in games_ids])
18
  EXPECTED_COLUMNS.extend([f'winrate_{i}' for i in games_ids])
19
 
 
12
  'total_games_played', 'total_winrate']
13
 
14
  # Add games columns
15
+ games_ids = list(range(1, 24)) + [25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40,
16
+ 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
17
+ 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
18
+ 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91,
19
+ 92, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 104, 105, 106,
20
+ 107, 108, 109, 110, 111, 112, 113, 114, 119, 120, 121, 123, 126,
21
+ 128, 129, 131, 135, 136, 137, 138, 145]
22
+
23
  EXPECTED_COLUMNS.extend([f'games_{i}' for i in games_ids])
24
  EXPECTED_COLUMNS.extend([f'winrate_{i}' for i in games_ids])
25