salmon_pool_loadouts (view)
20 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Winrate, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
DartlingGunner, MonkeyVillage, SuperMonkey | 61 | 49 | 12 | 80.33% | 1.96% | 70.35% |
BananaFarm, DartMonkey, SpikeFactory | 118 | 81 | 37 | 68.64% | 3.78% | 60.27% |
Alchemist, MonkeyBuccaneer, SpikeFactory | 516 | 301 | 215 | 58.33% | 16.55% | 54.08% |
BananaFarm, DartlingGunner, NinjaMonkey | 43 | 26 | 17 | 60.47% | 1.38% | 45.85% |
BananaFarm, IceMonkey, MonkeySub | 151 | 78 | 73 | 51.66% | 4.84% | 43.68% |
BananaFarm, Druid, MonkeySub | 59 | 32 | 27 | 54.24% | 1.89% | 41.52% |
BananaFarm, BombShooter, MonkeySub | 257 | 115 | 142 | 44.75% | 8.24% | 38.67% |
BananaFarm, DartlingGunner, WizardMonkey | 24 | 14 | 10 | 58.33% | 0.77% | 38.61% |
BananaFarm, EngineerMonkey, WizardMonkey | 29 | 16 | 13 | 55.17% | 0.93% | 37.07% |
BananaFarm, MonkeyBuccaneer, SpikeFactory | 23 | 13 | 10 | 56.52% | 0.74% | 36.26% |
Alchemist, BananaFarm, MonkeyBuccaneer | 22 | 12 | 10 | 54.55% | 0.71% | 33.74% |
BananaFarm, MonkeySub, WizardMonkey | 23 | 12 | 11 | 52.17% | 0.74% | 31.76% |
BananaFarm, TackShooter, WizardMonkey | 75 | 31 | 44 | 41.33% | 2.41% | 30.19% |
BananaFarm, DartlingGunner, SuperMonkey | 24 | 12 | 12 | 50.00% | 0.77% | 30.00% |
BananaFarm, SniperMonkey, WizardMonkey | 32 | 15 | 17 | 46.88% | 1.03% | 29.58% |
DartlingGunner, Druid, SpikeFactory | 25 | 12 | 13 | 48.00% | 0.80% | 28.42% |
BoomerangMonkey, MonkeySub, SpikeFactory | 27 | 12 | 15 | 44.44% | 0.87% | 25.70% |
HeliPilot, IceMonkey, MonkeyVillage | 33 | 13 | 20 | 39.39% | 1.06% | 22.72% |
BananaFarm, BoomerangMonkey, MonkeySub | 25 | 10 | 15 | 40.00% | 0.80% | 20.80% |
BananaFarm, MonkeySub, SpikeFactory | 46 | 12 | 34 | 26.09% | 1.48% | 13.40% |
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;