star_hero_loadouts (view)
11 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Games, Wins, Losses, Winrate, Pickrate
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Jericho | BananaFarm, TackShooter, WizardMonkey | 39 | 28 | 11 | 71.79% | 1.89% | 57.67% |
Quincy_Cyber | BananaFarm, TackShooter, WizardMonkey | 66 | 44 | 22 | 66.67% | 3.20% | 55.29% |
PatFusty_Snowman | BananaFarm, DartlingGunner, IceMonkey | 63 | 42 | 21 | 66.67% | 3.06% | 55.03% |
Benjamin | BananaFarm, DartlingGunner, NinjaMonkey | 82 | 51 | 31 | 62.20% | 3.98% | 51.70% |
Churchill_Sentai | BananaFarm, IceMonkey, MonkeySub | 95 | 42 | 53 | 44.21% | 4.61% | 34.22% |
Obyn | BananaFarm, Druid, MonkeySub | 63 | 29 | 34 | 46.03% | 3.06% | 33.72% |
Jericho | BananaFarm, IceMonkey, MonkeySub | 56 | 26 | 30 | 46.43% | 2.72% | 33.37% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 74 | 33 | 41 | 44.59% | 3.59% | 33.27% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 85 | 36 | 49 | 42.35% | 4.13% | 31.85% |
Jericho | BananaFarm, BombShooter, MonkeySub | 52 | 22 | 30 | 42.31% | 2.52% | 28.88% |
StrikerJones_Biker | HeliPilot, IceMonkey, MonkeyVillage | 21 | 10 | 11 | 47.62% | 1.02% | 26.26% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW star_hero_loadouts AS WITH star AS (SELECT * FROM matches WHERE map = 'star') 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 star) * 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 star UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM star) 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;