sands_of_time_hero_loadouts (view)
32 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Games, Wins, Winrate, Pickrate
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Etienne_Bee | BananaFarm, BoomerangMonkey, EngineerMonkey | 83 | 60 | 23 | 72.29% | 1.24% | 62.66% |
PatFusty_Snowman | DartlingGunner, IceMonkey, MonkeyVillage | 41 | 31 | 10 | 75.61% | 0.61% | 62.46% |
Jericho | BananaFarm, EngineerMonkey, MonkeyAce | 174 | 119 | 55 | 68.39% | 2.61% | 61.48% |
PatFusty_Snowman | HeliPilot, IceMonkey, SuperMonkey | 72 | 51 | 21 | 70.83% | 1.08% | 60.33% |
Ezili | BananaFarm, BombShooter, WizardMonkey | 51 | 36 | 15 | 70.59% | 0.76% | 58.08% |
PatFusty_Snowman | BananaFarm, DartlingGunner, IceMonkey | 205 | 128 | 77 | 62.44% | 3.07% | 55.81% |
Obyn | BananaFarm, Druid, MonkeySub | 727 | 400 | 327 | 55.02% | 10.90% | 51.40% |
PatFusty_Snowman | HeliPilot, IceMonkey, NinjaMonkey | 36 | 23 | 13 | 63.89% | 0.54% | 48.20% |
Etienne_Bee | BananaFarm, BoomerangMonkey, NinjaMonkey | 115 | 65 | 50 | 56.52% | 1.72% | 47.46% |
Gwendolin_Science | GlueGunner, HeliPilot, MonkeyVillage | 120 | 67 | 53 | 55.83% | 1.80% | 46.95% |
Gwendolin_Science | BananaFarm, GlueGunner, MonkeySub | 31 | 19 | 12 | 61.29% | 0.46% | 44.14% |
Churchill_Sentai | BananaFarm, BombShooter, MonkeySub | 122 | 63 | 59 | 51.64% | 1.83% | 42.77% |
PatFusty_Snowman | IceMonkey, MonkeyVillage, NinjaMonkey | 60 | 32 | 28 | 53.33% | 0.90% | 40.71% |
Benjamin | HeliPilot, MonkeyVillage, SuperMonkey | 29 | 17 | 12 | 58.62% | 0.43% | 40.70% |
Adora | BananaFarm, IceMonkey, SuperMonkey | 26 | 15 | 11 | 57.69% | 0.39% | 38.70% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 70 | 35 | 35 | 50.00% | 1.05% | 38.29% |
Quincy_Cyber | BananaFarm, TackShooter, WizardMonkey | 31 | 17 | 14 | 54.84% | 0.46% | 37.32% |
Obyn | Druid, MonkeySub, SpikeFactory | 23 | 13 | 10 | 56.52% | 0.34% | 36.26% |
Quincy | BananaFarm, IceMonkey, WizardMonkey | 30 | 16 | 14 | 53.33% | 0.45% | 35.48% |
Quincy | BananaFarm, TackShooter, WizardMonkey | 108 | 48 | 60 | 44.44% | 1.62% | 35.07% |
Etienne_Bee | BananaFarm, BoomerangMonkey, SpikeFactory | 81 | 37 | 44 | 45.68% | 1.21% | 34.83% |
Bonnie | Alchemist, MonkeyBuccaneer, SpikeFactory | 41 | 20 | 21 | 48.78% | 0.61% | 33.48% |
Obyn_Ocean | Alchemist, BananaFarm, NinjaMonkey | 45 | 21 | 24 | 46.67% | 0.67% | 32.09% |
Ezili | BananaFarm, NinjaMonkey, WizardMonkey | 33 | 16 | 17 | 48.48% | 0.49% | 31.43% |
Quincy | BananaFarm, BombShooter, MonkeySub | 21 | 11 | 10 | 52.38% | 0.31% | 31.02% |
Bonnie | DartlingGunner, IceMonkey, NinjaMonkey | 26 | 13 | 13 | 50.00% | 0.39% | 30.78% |
Jericho | BananaFarm, TackShooter, WizardMonkey | 65 | 27 | 38 | 41.54% | 0.97% | 29.56% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 127 | 48 | 79 | 37.80% | 1.90% | 29.36% |
Gwendolin_Science | DartMonkey, GlueGunner, MonkeyVillage | 24 | 11 | 13 | 45.83% | 0.36% | 25.90% |
Etienne_Bee | GlueGunner, MonkeyVillage, TackShooter | 36 | 15 | 21 | 41.67% | 0.54% | 25.56% |
Benjamin | BananaFarm, DartlingGunner, SuperMonkey | 48 | 18 | 30 | 37.50% | 0.72% | 23.80% |
Churchill | BananaFarm, BombShooter, MonkeySub | 35 | 13 | 22 | 37.14% | 0.52% | 21.13% |
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;