pirate_cove_loadouts (view)
12 rows
This data as json, CSV (advanced)
Suggested facets: Wins, Losses
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
MortarMonkey, SniperMonkey, TackShooter | 52 | 39 | 13 | 75.00% | 1.81% | 63.23% |
BananaFarm, GlueGunner, TackShooter | 202 | 129 | 73 | 63.86% | 7.03% | 57.24% |
BananaFarm, MortarMonkey, TackShooter | 465 | 276 | 189 | 59.35% | 16.18% | 54.89% |
BananaFarm, BombShooter, WizardMonkey | 80 | 52 | 28 | 65.00% | 2.78% | 54.55% |
BananaFarm, IceMonkey, TackShooter | 119 | 69 | 50 | 57.98% | 4.14% | 49.11% |
BananaFarm, TackShooter, WizardMonkey | 470 | 248 | 222 | 52.77% | 16.35% | 48.25% |
GlueGunner, MortarMonkey, TackShooter | 40 | 23 | 17 | 57.50% | 1.39% | 42.18% |
BananaFarm, EngineerMonkey, MonkeyAce | 29 | 17 | 12 | 58.62% | 1.01% | 40.70% |
GlueGunner, TackShooter, WizardMonkey | 33 | 18 | 15 | 54.55% | 1.15% | 37.56% |
BananaFarm, BoomerangMonkey, NinjaMonkey | 25 | 14 | 11 | 56.00% | 0.87% | 36.54% |
IceMonkey, MonkeyVillage, TackShooter | 34 | 17 | 17 | 50.00% | 1.18% | 33.19% |
GlueGunner, MonkeyVillage, TackShooter | 57 | 22 | 35 | 38.60% | 1.98% | 25.96% |
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;