ports_loadouts (view)
11 rows
This data as json, CSV (advanced)
Suggested facets: Wins
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, MonkeyAce, MortarMonkey | 171 | 114 | 57 | 66.67% | 7.77% | 59.60% |
Alchemist, MonkeyAce, MonkeySub | 366 | 230 | 136 | 62.84% | 16.62% | 57.89% |
Alchemist, MonkeyAce, MortarMonkey | 35 | 25 | 10 | 71.43% | 1.59% | 56.46% |
BananaFarm, HeliPilot, MonkeySub | 83 | 54 | 29 | 65.06% | 3.77% | 54.80% |
BananaFarm, MonkeyAce, MonkeySub | 295 | 171 | 124 | 57.97% | 13.40% | 52.33% |
Alchemist, BananaFarm, MonkeyAce | 189 | 93 | 96 | 49.21% | 8.58% | 42.08% |
BananaFarm, Druid, MonkeySub | 75 | 38 | 37 | 50.67% | 3.41% | 39.35% |
Alchemist, MonkeyAce, SpikeFactory | 48 | 24 | 24 | 50.00% | 2.18% | 35.85% |
BananaFarm, BombShooter, MonkeySub | 23 | 12 | 11 | 52.17% | 1.04% | 31.76% |
BananaFarm, MonkeySub, TackShooter | 38 | 13 | 25 | 34.21% | 1.73% | 19.13% |
BananaFarm, IceMonkey, MonkeySub | 43 | 13 | 30 | 30.23% | 1.95% | 16.51% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW ports_loadouts AS WITH ports AS (SELECT * FROM matches WHERE map = 'ports') 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 ports) * 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 ports UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM ports) 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;