cobra_command_hero_loadouts (view)
23 rows
This data as json, CSV (advanced)
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Jericho | BananaFarm, EngineerMonkey, MonkeyAce | 43 | 33 | 10 | 76.74% | 0.73% | 64.12% |
Adora | BananaFarm, DartMonkey, MortarMonkey | 64 | 44 | 20 | 68.75% | 1.08% | 57.39% |
Etienne | BananaFarm, BombShooter, SpikeFactory | 692 | 414 | 278 | 59.83% | 11.71% | 56.17% |
StrikerJones | BananaFarm, BombShooter, MortarMonkey | 42 | 29 | 13 | 69.05% | 0.71% | 55.07% |
Obyn_Ocean | Alchemist, HeliPilot, NinjaMonkey | 41 | 28 | 13 | 68.29% | 0.69% | 54.05% |
Etienne | BananaFarm, DartMonkey, GlueGunner | 175 | 101 | 74 | 57.71% | 2.96% | 50.39% |
Etienne_Bee | BananaFarm, BombShooter, SpikeFactory | 313 | 173 | 140 | 55.27% | 5.30% | 49.76% |
Ezili | BananaFarm, BombShooter, WizardMonkey | 72 | 42 | 30 | 58.33% | 1.22% | 46.95% |
Jericho | BananaFarm, BombShooter, MonkeySub | 67 | 39 | 28 | 58.21% | 1.13% | 46.40% |
Etienne_Bee | BananaFarm, BoomerangMonkey, SpikeFactory | 35 | 21 | 14 | 60.00% | 0.59% | 43.77% |
Gwendolin_Science | GlueGunner, HeliPilot, MonkeyVillage | 148 | 76 | 72 | 51.35% | 2.50% | 43.30% |
Etienne_Bee | BananaFarm, BombShooter, SuperMonkey | 34 | 19 | 15 | 55.88% | 0.58% | 39.19% |
Gwendolin_Science | DartMonkey, GlueGunner, MonkeyVillage | 26 | 14 | 12 | 53.85% | 0.44% | 34.68% |
Gwendolin_Science | GlueGunner, MonkeyVillage, NinjaMonkey | 61 | 28 | 33 | 45.90% | 1.03% | 33.40% |
StrikerJones | BombShooter, HeliPilot, MortarMonkey | 23 | 12 | 11 | 52.17% | 0.39% | 31.76% |
Gwendolin_Science | Alchemist, GlueGunner, NinjaMonkey | 36 | 17 | 19 | 47.22% | 0.61% | 30.91% |
Etienne | BananaFarm, BoomerangMonkey, SniperMonkey | 24 | 12 | 12 | 50.00% | 0.41% | 30.00% |
Quincy | BananaFarm, BombShooter, MonkeySub | 22 | 11 | 11 | 50.00% | 0.37% | 29.11% |
Etienne | BananaFarm, BombShooter, SniperMonkey | 20 | 10 | 10 | 50.00% | 0.34% | 28.09% |
Jericho_StarCaptain | BananaFarm, BombShooter, MonkeySub | 47 | 19 | 28 | 40.43% | 0.80% | 26.40% |
Jericho_Highwayman | BananaFarm, BombShooter, MonkeySub | 27 | 12 | 15 | 44.44% | 0.46% | 25.70% |
Gwendolin_Science | GlueGunner, MonkeyVillage, TackShooter | 60 | 17 | 43 | 28.33% | 1.02% | 16.93% |
Obyn_Ocean | Alchemist, BananaFarm, NinjaMonkey | 52 | 15 | 37 | 28.85% | 0.88% | 16.53% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW cobra_command_hero_loadouts AS WITH cobra_command AS (SELECT * FROM matches WHERE map = 'cobra_command') 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 cobra_command) * 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 cobra_command UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM cobra_command) 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;