banana_depot_scene_loadouts (view)
5 rows
This data as json, CSV (advanced)
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, BombShooter, WizardMonkey | 33 | 22 | 11 | 66.67% | 4.77% | 50.58% |
BananaFarm, TackShooter, WizardMonkey | 228 | 126 | 102 | 55.26% | 32.95% | 48.81% |
BananaFarm, BombShooter, SpikeFactory | 127 | 66 | 61 | 51.97% | 18.35% | 43.28% |
BananaFarm, MortarMonkey, TackShooter | 48 | 26 | 22 | 54.17% | 6.94% | 40.07% |
BananaFarm, BombShooter, MonkeySub | 27 | 14 | 13 | 51.85% | 3.90% | 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;