inflection_loadouts (view)
15 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, BoomerangMonkey, MortarMonkey | 74 | 60 | 14 | 81.08% | 2.32% | 72.16% |
DartlingGunner, MonkeyVillage, SuperMonkey | 65 | 52 | 13 | 80.00% | 2.04% | 70.28% |
BananaFarm, DartMonkey, SpikeFactory | 786 | 464 | 322 | 59.03% | 24.69% | 55.60% |
BananaFarm, DartMonkey, MonkeySub | 34 | 24 | 10 | 70.59% | 1.07% | 55.27% |
Alchemist, DartlingGunner, SpikeFactory | 154 | 82 | 72 | 53.25% | 4.84% | 45.37% |
BananaFarm, EngineerMonkey, SpikeFactory | 36 | 22 | 14 | 61.11% | 1.13% | 45.19% |
BananaFarm, BoomerangMonkey, SpikeFactory | 111 | 56 | 55 | 50.45% | 3.49% | 41.15% |
Alchemist, BananaFarm, DartlingGunner | 31 | 18 | 13 | 58.06% | 0.97% | 40.69% |
Alchemist, MonkeyBuccaneer, SpikeFactory | 85 | 43 | 42 | 50.59% | 2.67% | 39.96% |
BananaFarm, DartMonkey, MortarMonkey | 84 | 39 | 45 | 46.43% | 2.64% | 35.76% |
BananaFarm, Druid, MonkeySub | 48 | 22 | 26 | 45.83% | 1.51% | 31.74% |
SpikeFactory, TackShooter, WizardMonkey | 27 | 13 | 14 | 48.15% | 0.85% | 29.30% |
BoomerangMonkey, MortarMonkey, SpikeFactory | 30 | 14 | 16 | 46.67% | 0.94% | 28.81% |
BananaFarm, DartlingGunner, SpikeFactory | 36 | 15 | 21 | 41.67% | 1.13% | 25.56% |
DartMonkey, GlueGunner, SpikeFactory | 23 | 10 | 13 | 43.48% | 0.72% | 23.22% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW inflection_loadouts AS WITH inflection AS (SELECT * FROM matches WHERE map = 'inflection') 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 inflection) * 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 inflection UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM inflection) 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;