oasis_hero_loadouts (view)
31 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 | 168 | 121 | 47 | 72.02% | 2.44% | 65.24% |
Jericho | BananaFarm, BombShooter, MonkeySub | 252 | 160 | 92 | 63.49% | 3.66% | 57.55% |
Churchill_Sentai | BananaFarm, EngineerMonkey, MonkeyAce | 35 | 24 | 11 | 68.57% | 0.51% | 53.19% |
Etienne | BananaFarm, BombShooter, SpikeFactory | 189 | 113 | 76 | 59.79% | 2.74% | 52.80% |
Obyn | BananaFarm, Druid, MonkeySub | 595 | 331 | 264 | 55.63% | 8.64% | 51.64% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 111 | 67 | 44 | 60.36% | 1.61% | 51.26% |
Ezili | BananaFarm, BombShooter, WizardMonkey | 147 | 85 | 62 | 57.82% | 2.13% | 49.84% |
Jericho | BananaFarm, EngineerMonkey, MonkeyAce | 71 | 42 | 29 | 59.15% | 1.03% | 47.72% |
Etienne | BananaFarm, BombShooter, WizardMonkey | 28 | 18 | 10 | 64.29% | 0.41% | 46.54% |
PatFusty_Snowman | IceMonkey, MonkeyVillage, TackShooter | 28 | 18 | 10 | 64.29% | 0.41% | 46.54% |
PatFusty_Snowman | HeliPilot, IceMonkey, SuperMonkey | 67 | 38 | 29 | 56.72% | 0.97% | 44.85% |
Etienne | BananaFarm, DartMonkey, GlueGunner | 68 | 37 | 31 | 54.41% | 0.99% | 42.57% |
Obyn_Ocean | Alchemist, BananaFarm, NinjaMonkey | 62 | 34 | 28 | 54.84% | 0.90% | 42.45% |
PatFusty_Snowman | DartlingGunner, IceMonkey, MonkeyVillage | 51 | 27 | 24 | 52.94% | 0.74% | 39.24% |
Etienne_Bee | BananaFarm, BombShooter, SpikeFactory | 79 | 39 | 40 | 49.37% | 1.15% | 38.34% |
Gwendolin_Science | GlueGunner, HeliPilot, MonkeyVillage | 130 | 58 | 72 | 44.62% | 1.89% | 36.07% |
Quincy | BananaFarm, TackShooter, WizardMonkey | 60 | 29 | 31 | 48.33% | 0.87% | 35.69% |
Jericho_StarCaptain | BananaFarm, BombShooter, MonkeySub | 39 | 20 | 19 | 51.28% | 0.57% | 35.59% |
Etienne | EngineerMonkey, TackShooter, WizardMonkey | 30 | 16 | 14 | 53.33% | 0.44% | 35.48% |
Bonnie | Alchemist, MonkeyBuccaneer, SpikeFactory | 28 | 15 | 13 | 53.57% | 0.41% | 35.10% |
Etienne_Bee | BananaFarm, BoomerangMonkey, SuperMonkey | 33 | 17 | 16 | 51.52% | 0.48% | 34.46% |
Gwendolin_Science | DartMonkey, GlueGunner, MonkeyVillage | 54 | 25 | 29 | 46.30% | 0.78% | 33.00% |
Quincy | BananaFarm, SniperMonkey, WizardMonkey | 30 | 15 | 15 | 50.00% | 0.44% | 32.11% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 69 | 30 | 39 | 43.48% | 1.00% | 31.78% |
Obyn | Druid, MonkeySub, SpikeFactory | 24 | 12 | 12 | 50.00% | 0.35% | 30.00% |
StrikerJones | BananaFarm, BombShooter, MortarMonkey | 22 | 11 | 11 | 50.00% | 0.32% | 29.11% |
PatFusty_Snowman | BananaFarm, IceMonkey, SuperMonkey | 30 | 14 | 16 | 46.67% | 0.44% | 28.81% |
Bonnie | HeliPilot, IceMonkey, SuperMonkey | 24 | 11 | 13 | 45.83% | 0.35% | 25.90% |
Jericho | BananaFarm, TackShooter, WizardMonkey | 33 | 13 | 20 | 39.39% | 0.48% | 22.72% |
Obyn_Ocean | Alchemist, HeliPilot, NinjaMonkey | 37 | 14 | 23 | 37.84% | 0.54% | 22.21% |
Obyn | Alchemist, Druid, MonkeyVillage | 24 | 10 | 14 | 41.67% | 0.35% | 21.94% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW oasis_hero_loadouts AS WITH oasis AS (SELECT * FROM matches WHERE map = 'oasis') 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 oasis) * 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 oasis UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM oasis) 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;