salmon_pool_loadouts (view)
16 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Winrate, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, MonkeyAce, MonkeySub | 59 | 47 | 12 | 79.66% | 1.66% | 69.39% |
BananaFarm, EngineerMonkey, MonkeyAce | 92 | 68 | 24 | 73.91% | 2.59% | 64.94% |
DartlingGunner, Druid, SpikeFactory | 55 | 41 | 14 | 74.55% | 1.55% | 63.03% |
BananaFarm, DartMonkey, SpikeFactory | 176 | 109 | 67 | 61.93% | 4.95% | 54.76% |
BananaFarm, BoomerangMonkey, MonkeySub | 34 | 23 | 11 | 67.65% | 0.96% | 51.92% |
BananaFarm, BombShooter, MonkeySub | 124 | 72 | 52 | 58.06% | 3.49% | 49.38% |
Alchemist, MonkeyBuccaneer, SpikeFactory | 725 | 380 | 345 | 52.41% | 20.40% | 48.78% |
BananaFarm, MonkeySub, SuperMonkey | 31 | 18 | 13 | 58.06% | 0.87% | 40.69% |
BananaFarm, Druid, MonkeySub | 91 | 45 | 46 | 49.45% | 2.56% | 39.18% |
BananaFarm, BombShooter, WizardMonkey | 22 | 12 | 10 | 54.55% | 0.62% | 33.74% |
BoomerangMonkey, MonkeySub, SpikeFactory | 23 | 12 | 11 | 52.17% | 0.65% | 31.76% |
DartMonkey, GlueGunner, MonkeyVillage | 34 | 15 | 19 | 44.12% | 0.96% | 27.43% |
MonkeyBuccaneer, SpikeFactory, WizardMonkey | 22 | 10 | 12 | 45.45% | 0.62% | 24.65% |
BananaFarm, TackShooter, WizardMonkey | 23 | 10 | 13 | 43.48% | 0.65% | 23.22% |
BananaFarm, DartMonkey, GlueGunner | 27 | 10 | 17 | 37.04% | 0.76% | 18.82% |
BananaFarm, MonkeyBuccaneer, WizardMonkey | 38 | 12 | 26 | 31.58% | 1.07% | 16.80% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW salmon_pool_loadouts AS WITH salmon_pool AS (SELECT * FROM matches WHERE map = 'salmon_pool') 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 salmon_pool) * 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 salmon_pool UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM salmon_pool) 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;