mayan_map_01_loadouts (view)
20 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 |
---|---|---|---|---|---|---|
GlueGunner, HeliPilot, MonkeyVillage | 83 | 54 | 29 | 65.06% | 2.67% | 54.80% |
GlueGunner, MonkeyVillage, TackShooter | 261 | 153 | 108 | 58.62% | 8.40% | 52.65% |
BananaFarm, TackShooter, WizardMonkey | 140 | 84 | 56 | 60.00% | 4.51% | 51.88% |
BananaFarm, SniperMonkey, TackShooter | 34 | 22 | 12 | 64.71% | 1.09% | 48.64% |
DartMonkey, GlueGunner, MonkeyVillage | 69 | 40 | 29 | 57.97% | 2.22% | 46.32% |
GlueGunner, MonkeyVillage, NinjaMonkey | 48 | 28 | 20 | 58.33% | 1.55% | 44.39% |
IceMonkey, MonkeyVillage, TackShooter | 41 | 23 | 18 | 56.10% | 1.32% | 40.91% |
BananaFarm, GlueGunner, TackShooter | 30 | 17 | 13 | 56.67% | 0.97% | 38.93% |
DartMonkey, GlueGunner, NinjaMonkey | 28 | 16 | 12 | 57.14% | 0.90% | 38.81% |
BananaFarm, BombShooter, WizardMonkey | 27 | 15 | 12 | 55.56% | 0.87% | 36.81% |
DartlingGunner, MonkeyVillage, SuperMonkey | 54 | 27 | 27 | 50.00% | 1.74% | 36.66% |
BananaFarm, SniperMonkey, WizardMonkey | 32 | 17 | 15 | 53.13% | 1.03% | 35.83% |
SniperMonkey, SuperMonkey, TackShooter | 33 | 17 | 16 | 51.52% | 1.06% | 34.46% |
MonkeyAce, SniperMonkey, WizardMonkey | 29 | 15 | 14 | 51.72% | 0.93% | 33.54% |
SniperMonkey, TackShooter, WizardMonkey | 27 | 13 | 14 | 48.15% | 0.87% | 29.30% |
MonkeyVillage, SniperMonkey, TackShooter | 30 | 14 | 16 | 46.67% | 0.97% | 28.81% |
BananaFarm, DartlingGunner, SuperMonkey | 62 | 24 | 38 | 38.71% | 2.00% | 26.59% |
NinjaMonkey, SniperMonkey, WizardMonkey | 29 | 12 | 17 | 41.38% | 0.93% | 23.45% |
Alchemist, HeliPilot, NinjaMonkey | 25 | 10 | 15 | 40.00% | 0.80% | 20.80% |
BananaFarm, Druid, MonkeySub | 25 | 10 | 15 | 40.00% | 0.80% | 20.80% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW mayan_map_01_loadouts AS WITH mayan_map_01 AS (SELECT * FROM matches WHERE map = 'mayan_map_01') 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 mayan_map_01) * 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 mayan_map_01 UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM mayan_map_01) 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;