sands_of_time_hero_loadouts (view)
23 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Games, Wins, Losses, Winrate, Pickrate, Winrate_LowerBound_95CI
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
PatFusty_Snowman | BananaFarm, DartlingGunner, IceMonkey | 204 | 144 | 60 | 70.59% | 3.46% | 64.34% |
Etienne | BananaFarm, DartMonkey, GlueGunner | 52 | 39 | 13 | 75.00% | 0.88% | 63.23% |
PatFusty_Snowman | HeliPilot, IceMonkey, SuperMonkey | 78 | 55 | 23 | 70.51% | 1.32% | 60.39% |
PatFusty_Snowman | DartlingGunner, IceMonkey, MonkeyVillage | 70 | 48 | 22 | 68.57% | 1.19% | 57.70% |
PatFusty_Snowman | IceMonkey, MonkeyVillage, TackShooter | 33 | 22 | 11 | 66.67% | 0.56% | 50.58% |
Jericho | BananaFarm, EngineerMonkey, MonkeyAce | 214 | 119 | 95 | 55.61% | 3.63% | 48.95% |
Ezili | BananaFarm, BombShooter, WizardMonkey | 57 | 35 | 22 | 61.40% | 0.97% | 48.77% |
Obyn | BananaFarm, Druid, MonkeySub | 402 | 213 | 189 | 52.99% | 6.82% | 48.11% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 116 | 63 | 53 | 54.31% | 1.97% | 45.25% |
Jericho | BananaFarm, TackShooter, WizardMonkey | 71 | 40 | 31 | 56.34% | 1.20% | 44.80% |
Gwendolin_Science | GlueGunner, HeliPilot, MonkeyVillage | 118 | 63 | 55 | 53.39% | 2.00% | 44.39% |
Bonnie | Alchemist, MonkeyBuccaneer, SpikeFactory | 54 | 31 | 23 | 57.41% | 0.92% | 44.22% |
PatFusty_Snowman | BananaFarm, IceMonkey, SuperMonkey | 29 | 17 | 12 | 58.62% | 0.49% | 40.70% |
Gwendolin_Science | DartMonkey, GlueGunner, MonkeyVillage | 26 | 15 | 11 | 57.69% | 0.44% | 38.70% |
Obyn | Druid, MonkeySub, SpikeFactory | 27 | 15 | 12 | 55.56% | 0.46% | 36.81% |
Benjamin | HeliPilot, MonkeyVillage, SuperMonkey | 22 | 12 | 10 | 54.55% | 0.37% | 33.74% |
Etienne | EngineerMonkey, TackShooter, WizardMonkey | 22 | 12 | 10 | 54.55% | 0.37% | 33.74% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 86 | 38 | 48 | 44.19% | 1.46% | 33.69% |
Quincy | BananaFarm, TackShooter, WizardMonkey | 43 | 20 | 23 | 46.51% | 0.73% | 31.60% |
Gwendolin_Science | BananaFarm, GlueGunner, MonkeySub | 27 | 12 | 15 | 44.44% | 0.46% | 25.70% |
Etienne_Bee | GlueGunner, MonkeyVillage, TackShooter | 25 | 11 | 14 | 44.00% | 0.42% | 24.54% |
Benjamin | BananaFarm, DartlingGunner, SuperMonkey | 69 | 22 | 47 | 31.88% | 1.17% | 20.89% |
Quincy | BananaFarm, SniperMonkey, WizardMonkey | 36 | 12 | 24 | 33.33% | 0.61% | 17.93% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW sands_of_time_hero_loadouts AS WITH sands_of_time AS (SELECT * FROM matches WHERE map = 'sands_of_time') 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 sands_of_time) * 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 sands_of_time UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM sands_of_time) 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;