up_on_the_roof_hero_loadouts (view)
28 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Games, Wins, Losses, Pickrate
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Benjamin_DJ | DartlingGunner, MonkeyVillage, SuperMonkey | 61 | 45 | 16 | 73.77% | 1.06% | 62.73% |
Adora | HeliPilot, IceMonkey, SuperMonkey | 75 | 53 | 22 | 70.67% | 1.30% | 60.36% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 204 | 130 | 74 | 63.73% | 3.54% | 57.13% |
Adora | IceMonkey, MonkeyVillage, SuperMonkey | 105 | 67 | 38 | 63.81% | 1.82% | 54.62% |
Bonnie | DartlingGunner, SpikeFactory, SuperMonkey | 71 | 46 | 25 | 64.79% | 1.23% | 53.68% |
Adora | MonkeyVillage, SniperMonkey, SuperMonkey | 200 | 119 | 81 | 59.50% | 3.47% | 52.70% |
Gwendolin_Science | DartMonkey, GlueGunner, MonkeyVillage | 121 | 74 | 47 | 61.16% | 2.10% | 52.47% |
Adora | DartlingGunner, MonkeyVillage, SuperMonkey | 103 | 62 | 41 | 60.19% | 1.79% | 50.74% |
Obyn_Ocean | Alchemist, GlueGunner, NinjaMonkey | 42 | 27 | 15 | 64.29% | 0.73% | 49.79% |
Etienne | MonkeyVillage, SniperMonkey, TackShooter | 32 | 21 | 11 | 65.63% | 0.56% | 49.17% |
Bonnie | DartlingGunner, MonkeyVillage, SuperMonkey | 57 | 33 | 24 | 57.89% | 0.99% | 45.08% |
Bonnie | DartMonkey, MonkeyVillage, SuperMonkey | 26 | 16 | 10 | 61.54% | 0.45% | 42.84% |
Gwendolin_Science | GlueGunner, HeliPilot, MonkeyVillage | 118 | 61 | 57 | 51.69% | 2.05% | 42.68% |
Adora | HeliPilot, MonkeyVillage, SuperMonkey | 107 | 54 | 53 | 50.47% | 1.86% | 40.99% |
Adora | BoomerangMonkey, MonkeyVillage, SuperMonkey | 33 | 19 | 14 | 57.58% | 0.57% | 40.71% |
Etienne_Bee | DartlingGunner, Druid, MonkeyVillage | 48 | 26 | 22 | 54.17% | 0.83% | 40.07% |
Gwendolin_Science | Alchemist, GlueGunner, NinjaMonkey | 46 | 25 | 21 | 54.35% | 0.80% | 39.95% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 69 | 35 | 34 | 50.72% | 1.20% | 38.93% |
Benjamin | BananaFarm, DartlingGunner, SuperMonkey | 31 | 17 | 14 | 54.84% | 0.54% | 37.32% |
Adora | BananaFarm, IceMonkey, SuperMonkey | 29 | 16 | 13 | 55.17% | 0.50% | 37.07% |
Ezili | BananaFarm, BombShooter, WizardMonkey | 27 | 15 | 12 | 55.56% | 0.47% | 36.81% |
Gwendolin_Science | GlueGunner, MonkeyVillage, NinjaMonkey | 60 | 26 | 34 | 43.33% | 1.04% | 30.79% |
Gwendolin | GlueGunner, MonkeyVillage, TackShooter | 34 | 16 | 18 | 47.06% | 0.59% | 30.28% |
PatFusty | DartMonkey, GlueGunner, MonkeyVillage | 22 | 11 | 11 | 50.00% | 0.38% | 29.11% |
Etienne | BananaFarm, DartMonkey, GlueGunner | 26 | 12 | 14 | 46.15% | 0.45% | 26.99% |
Etienne | BananaFarm, BoomerangMonkey, SpikeFactory | 24 | 11 | 13 | 45.83% | 0.42% | 25.90% |
Bonnie | MonkeyAce, SniperMonkey, WizardMonkey | 27 | 12 | 15 | 44.44% | 0.47% | 25.70% |
Adora | DartMonkey, MonkeyVillage, SuperMonkey | 42 | 16 | 26 | 38.10% | 0.73% | 23.41% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW up_on_the_roof_hero_loadouts AS WITH up_on_the_roof AS (SELECT * FROM matches WHERE map = 'up_on_the_roof') SELECT Hero, 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 Hero, Loadout, Games, Wins, Losses, CAST(Wins AS REAL) / Games AS WR, CAST(Games AS REAL) / ( (SELECT COUNT(*) FROM up_on_the_roof) * 2) AS PR FROM (SELECT Hero, Loadout, SUM(Wins) + SUM(NOT Wins) AS Games, SUM(Wins) AS Wins, SUM(NOT Wins) AS Losses FROM (SELECT lHero AS Hero, printf('%s, %s, %s', lt1, lt2, lt3) AS Loadout, playerLeftWin AS Wins FROM up_on_the_roof UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM up_on_the_roof) GROUP BY Hero, 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;