salmon_pool_loadouts (view)
15 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, MonkeyAce, MonkeySub | 116 | 72 | 44 | 62.07% | 3.15% | 53.24% |
BananaFarm, TackShooter, WizardMonkey | 68 | 43 | 25 | 63.24% | 1.84% | 51.77% |
BananaFarm, DartMonkey, SpikeFactory | 63 | 40 | 23 | 63.49% | 1.71% | 51.60% |
BananaFarm, Druid, MonkeySub | 100 | 61 | 39 | 61.00% | 2.71% | 51.44% |
Alchemist, MonkeyBuccaneer, SpikeFactory | 475 | 265 | 210 | 55.79% | 12.88% | 51.32% |
BananaFarm, BombShooter, MonkeySub | 411 | 230 | 181 | 55.96% | 11.14% | 51.16% |
BananaFarm, IceMonkey, MonkeySub | 576 | 296 | 280 | 51.39% | 15.62% | 47.31% |
BananaFarm, MonkeySub, SpikeFactory | 89 | 48 | 41 | 53.93% | 2.41% | 43.58% |
DartMonkey, GlueGunner, MonkeySub | 25 | 14 | 11 | 56.00% | 0.68% | 36.54% |
Alchemist, MonkeySub, SpikeFactory | 23 | 13 | 10 | 56.52% | 0.62% | 36.26% |
BananaFarm, EngineerMonkey, MonkeyAce | 29 | 15 | 14 | 51.72% | 0.79% | 33.54% |
BananaFarm, NinjaMonkey, WizardMonkey | 21 | 11 | 10 | 52.38% | 0.57% | 31.02% |
BananaFarm, DartMonkey, MonkeySub | 23 | 10 | 13 | 43.48% | 0.62% | 23.22% |
BananaFarm, MonkeyBuccaneer, SniperMonkey | 23 | 10 | 13 | 43.48% | 0.62% | 23.22% |
BananaFarm, SniperMonkey, WizardMonkey | 32 | 12 | 20 | 37.50% | 0.87% | 20.73% |
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;