castle_ruins_hero_loadouts (view)
21 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Games, Wins, Losses, Pickrate
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Quincy_Cyber | BananaFarm, EngineerMonkey, WizardMonkey | 51 | 40 | 11 | 78.43% | 1.18% | 67.14% |
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 114 | 77 | 37 | 67.54% | 2.64% | 58.95% |
Etienne_Bee | BananaFarm, EngineerMonkey, MonkeyAce | 98 | 65 | 33 | 66.33% | 2.27% | 56.97% |
Quincy_Cyber | BananaFarm, TackShooter, WizardMonkey | 263 | 165 | 98 | 62.74% | 6.08% | 56.89% |
PatFusty_Snowman | BananaFarm, DartlingGunner, IceMonkey | 88 | 58 | 30 | 65.91% | 2.03% | 56.01% |
Etienne | BananaFarm, BoomerangMonkey, SniperMonkey | 38 | 26 | 12 | 68.42% | 0.88% | 53.64% |
Benjamin | BananaFarm, DartlingGunner, NinjaMonkey | 64 | 41 | 23 | 64.06% | 1.48% | 52.31% |
Jericho | BananaFarm, TackShooter, WizardMonkey | 136 | 81 | 55 | 59.56% | 3.14% | 51.31% |
Etienne | BananaFarm, SniperMonkey, TackShooter | 37 | 24 | 13 | 64.86% | 0.86% | 49.48% |
Jericho | BananaFarm, EngineerMonkey, MonkeyAce | 115 | 65 | 50 | 56.52% | 2.66% | 47.46% |
Obyn | BananaFarm, Druid, MonkeySub | 138 | 75 | 63 | 54.35% | 3.19% | 46.04% |
Obyn | DartlingGunner, Druid, SpikeFactory | 38 | 23 | 15 | 60.53% | 0.88% | 44.98% |
Etienne_Bee | BananaFarm, BoomerangMonkey, NinjaMonkey | 47 | 27 | 20 | 57.45% | 1.09% | 43.31% |
Quincy_Cyber | BananaFarm, BoomerangMonkey, WizardMonkey | 26 | 16 | 10 | 61.54% | 0.60% | 42.84% |
Bonnie | DartMonkey, SniperMonkey, SpikeFactory | 25 | 15 | 10 | 60.00% | 0.58% | 40.80% |
Jericho_Highwayman | BananaFarm, TackShooter, WizardMonkey | 63 | 32 | 31 | 50.79% | 1.46% | 38.45% |
Jericho_StarCaptain | BananaFarm, TackShooter, WizardMonkey | 33 | 18 | 15 | 54.55% | 0.76% | 37.56% |
Quincy | BananaFarm, TackShooter, WizardMonkey | 107 | 49 | 58 | 45.79% | 2.47% | 36.35% |
StrikerJones_Biker | BananaFarm, EngineerMonkey, MonkeyAce | 55 | 27 | 28 | 49.09% | 1.27% | 35.88% |
StrikerJones_Biker | HeliPilot, IceMonkey, MonkeyVillage | 55 | 25 | 30 | 45.45% | 1.27% | 32.29% |
Benjamin | BananaFarm, DartlingGunner, SuperMonkey | 29 | 14 | 15 | 48.28% | 0.67% | 30.09% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW castle_ruins_hero_loadouts AS WITH castle_ruins AS (SELECT * FROM matches WHERE map = 'castle_ruins') 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 castle_ruins) * 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 castle_ruins UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM castle_ruins) 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;