pirate_cove_loadouts (view)
12 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm, MortarMonkey, TackShooter | 446 | 260 | 186 | 58.30% | 17.60% | 53.72% |
BananaFarm, TackShooter, WizardMonkey | 335 | 194 | 141 | 57.91% | 13.22% | 52.62% |
BananaFarm, GlueGunner, TackShooter | 187 | 111 | 76 | 59.36% | 7.38% | 52.32% |
Alchemist, DartlingGunner, SuperMonkey | 30 | 20 | 10 | 66.67% | 1.18% | 49.80% |
BananaFarm, IceMonkey, TackShooter | 79 | 46 | 33 | 58.23% | 3.12% | 47.35% |
BananaFarm, BombShooter, WizardMonkey | 85 | 46 | 39 | 54.12% | 3.35% | 43.52% |
BananaFarm, EngineerMonkey, MonkeyAce | 26 | 15 | 11 | 57.69% | 1.03% | 38.70% |
GlueGunner, MortarMonkey, TackShooter | 25 | 13 | 12 | 52.00% | 0.99% | 32.42% |
EngineerMonkey, TackShooter, WizardMonkey | 26 | 13 | 13 | 50.00% | 1.03% | 30.78% |
GlueGunner, MonkeyVillage, TackShooter | 68 | 24 | 44 | 35.29% | 2.68% | 23.94% |
IceMonkey, MonkeyVillage, TackShooter | 26 | 11 | 15 | 42.31% | 1.03% | 23.32% |
BananaFarm, SniperMonkey, TackShooter | 27 | 10 | 17 | 37.04% | 1.07% | 18.82% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW pirate_cove_loadouts AS WITH pirate_cove AS (SELECT * FROM matches WHERE map = 'pirate_cove') 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 pirate_cove) * 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 pirate_cove UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM pirate_cove) 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;