banana_depot_scene_loadouts (view)
12 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, MortarMonkey, TackShooter | 234 | 152 | 82 | 64.96% | 8.55% | 58.84% |
BananaFarm, TackShooter, WizardMonkey | 492 | 287 | 205 | 58.33% | 17.98% | 53.98% |
BananaFarm, BombShooter, WizardMonkey | 86 | 53 | 33 | 61.63% | 3.14% | 51.35% |
BananaFarm, BombShooter, SpikeFactory | 508 | 275 | 233 | 54.13% | 18.57% | 49.80% |
MortarMonkey, SniperMonkey, TackShooter | 31 | 20 | 11 | 64.52% | 1.13% | 47.67% |
BananaFarm, SpikeFactory, TackShooter | 25 | 15 | 10 | 60.00% | 0.91% | 40.80% |
BananaFarm, BombShooter, TackShooter | 31 | 18 | 13 | 58.06% | 1.13% | 40.69% |
SpikeFactory, TackShooter, WizardMonkey | 67 | 34 | 33 | 50.75% | 2.45% | 38.77% |
BananaFarm, BombShooter, MortarMonkey | 34 | 18 | 16 | 52.94% | 1.24% | 36.16% |
BananaFarm, BombShooter, MonkeySub | 92 | 42 | 50 | 45.65% | 3.36% | 35.47% |
GlueGunner, MonkeyVillage, TackShooter | 31 | 16 | 15 | 51.61% | 1.13% | 34.02% |
BananaFarm, MonkeySub, TackShooter | 27 | 14 | 13 | 51.85% | 0.99% | 33.00% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW banana_depot_scene_loadouts AS WITH banana_depot_scene AS (SELECT * FROM matches WHERE map = 'banana_depot_scene') 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 banana_depot_scene) * 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 banana_depot_scene UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM banana_depot_scene) 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;