koru_loadouts (view)
26 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Winrate, Pickrate, WinRate_LowerBound_95CI
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, DartlingGunner, IceMonkey | 73 | 52 | 21 | 71.23% | 2.06% | 60.85% |
BananaFarm, TackShooter, WizardMonkey | 427 | 276 | 151 | 64.64% | 12.03% | 60.10% |
BananaFarm, EngineerMonkey, MonkeyAce | 54 | 36 | 18 | 66.67% | 1.52% | 54.09% |
BananaFarm, DartMonkey, MortarMonkey | 42 | 28 | 14 | 66.67% | 1.18% | 52.41% |
BananaFarm, MortarMonkey, TackShooter | 185 | 110 | 75 | 59.46% | 5.21% | 52.38% |
BananaFarm, BoomerangMonkey, SpikeFactory | 87 | 51 | 36 | 58.62% | 2.45% | 48.27% |
BananaFarm, BoomerangMonkey, MortarMonkey | 77 | 44 | 33 | 57.14% | 2.17% | 46.09% |
BananaFarm, SpikeFactory, TackShooter | 32 | 20 | 12 | 62.50% | 0.90% | 45.73% |
BananaFarm, GlueGunner, TackShooter | 184 | 96 | 88 | 52.17% | 5.19% | 44.96% |
BananaFarm, IceMonkey, TackShooter | 43 | 25 | 18 | 58.14% | 1.21% | 43.39% |
BananaFarm, BombShooter, SpikeFactory | 44 | 25 | 19 | 56.82% | 1.24% | 42.18% |
Alchemist, DartlingGunner, SuperMonkey | 24 | 14 | 10 | 58.33% | 0.68% | 38.61% |
BananaFarm, BombShooter, WizardMonkey | 97 | 46 | 51 | 47.42% | 2.73% | 37.49% |
BoomerangMonkey, MortarMonkey, SpikeFactory | 53 | 27 | 26 | 50.94% | 1.49% | 37.48% |
IceMonkey, MonkeyVillage, TackShooter | 23 | 13 | 10 | 56.52% | 0.65% | 36.26% |
BananaFarm, SniperMonkey, TackShooter | 34 | 18 | 16 | 52.94% | 0.96% | 36.16% |
SniperMonkey, TackShooter, WizardMonkey | 33 | 17 | 16 | 51.52% | 0.93% | 34.46% |
GlueGunner, MonkeyVillage, TackShooter | 65 | 29 | 36 | 44.62% | 1.83% | 32.53% |
BananaFarm, BoomerangMonkey, NinjaMonkey | 22 | 11 | 11 | 50.00% | 0.62% | 29.11% |
NinjaMonkey, SniperMonkey, WizardMonkey | 22 | 11 | 11 | 50.00% | 0.62% | 29.11% |
SpikeFactory, TackShooter, WizardMonkey | 47 | 19 | 28 | 40.43% | 1.32% | 26.40% |
BananaFarm, Druid, MonkeySub | 38 | 15 | 23 | 39.47% | 1.07% | 23.93% |
BananaFarm, BoomerangMonkey, WizardMonkey | 24 | 10 | 14 | 41.67% | 0.68% | 21.94% |
Alchemist, GlueGunner, NinjaMonkey | 28 | 11 | 17 | 39.29% | 0.79% | 21.20% |
SniperMonkey, SpikeFactory, TackShooter | 29 | 10 | 19 | 34.48% | 0.82% | 17.18% |
GlueGunner, MonkeyVillage, NinjaMonkey | 44 | 13 | 31 | 29.55% | 1.24% | 16.06% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW koru_loadouts AS WITH koru AS (SELECT * FROM matches WHERE map = 'koru') SELECT Loadout, Games, Wins, Losses, printf('%.2f%%', WR * 100) AS Winrate, printf('%.2f%%', PR * 100) AS Pickrate, printf('%.2f%%', (WR - 1.96 * SQRT((WR * (1 - WR)) / Games)) * 100) AS WinRate_LowerBound_95CI FROM (SELECT Loadout, Games, Wins, Losses, CAST(Wins AS REAL) / Games AS WR, CAST(Games AS REAL) / ( (SELECT COUNT(*) FROM koru) * 2) AS PR FROM (SELECT Loadout, SUM(Win) + SUM(NOT Win) AS Games, SUM(Win) AS Wins, SUM(NOT Win) AS Losses FROM (SELECT printf('%s, %s, %s', lt1, lt2, lt3) AS Loadout, playerLeftWin AS Win FROM koru UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM koru) GROUP BY Loadout) WHERE Wins >= 10 AND Losses >= 10) WHERE Wins >= 10 AND Losses >= 10 AND LENGTH(WinRate_LowerBound_95CI) = 6 ORDER BY WinRate_LowerBound_95CI DESC;