garden_hero_loadouts (view)
16 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 |
---|---|---|---|---|---|---|---|
Benjamin | DartlingGunner, MonkeyVillage, SuperMonkey | 58 | 45 | 13 | 77.59% | 1.83% | 66.85% |
Quincy_Cyber | BananaFarm, EngineerMonkey, WizardMonkey | 66 | 47 | 19 | 71.21% | 2.08% | 60.29% |
PatFusty_Snowman | BananaFarm, DartlingGunner, IceMonkey | 33 | 23 | 10 | 69.70% | 1.04% | 54.02% |
Obyn | BananaFarm, Druid, MonkeySub | 61 | 40 | 21 | 65.57% | 1.93% | 53.65% |
Etienne_Bee | BananaFarm, DartMonkey, SniperMonkey | 33 | 22 | 11 | 66.67% | 1.04% | 50.58% |
Benjamin | BananaFarm, DartlingGunner, NinjaMonkey | 40 | 26 | 14 | 65.00% | 1.26% | 50.22% |
Quincy_Cyber | BananaFarm, BoomerangMonkey, NinjaMonkey | 29 | 19 | 10 | 65.52% | 0.92% | 48.22% |
Churchill_Sentai | DartMonkey, NinjaMonkey, SniperMonkey | 36 | 23 | 13 | 63.89% | 1.14% | 48.20% |
Churchill_Sentai | BananaFarm, DartMonkey, SpikeFactory | 44 | 25 | 19 | 56.82% | 1.39% | 42.18% |
Churchill | DartMonkey, NinjaMonkey, SniperMonkey | 95 | 49 | 46 | 51.58% | 3.00% | 41.53% |
Quincy_Cyber | BananaFarm, TackShooter, WizardMonkey | 38 | 20 | 18 | 52.63% | 1.20% | 36.76% |
Quincy_Cyber | BananaFarm, DartMonkey, MortarMonkey | 25 | 14 | 11 | 56.00% | 0.79% | 36.54% |
Etienne | DartMonkey, GlueGunner, MonkeyVillage | 33 | 17 | 16 | 51.52% | 1.04% | 34.46% |
Quincy_Cyber | BananaFarm, DartMonkey, MonkeySub | 31 | 16 | 15 | 51.61% | 0.98% | 34.02% |
Quincy_Cyber | BananaFarm, DartMonkey, WizardMonkey | 22 | 12 | 10 | 54.55% | 0.69% | 33.74% |
Etienne | BananaFarm, DartMonkey, SpikeFactory | 26 | 13 | 13 | 50.00% | 0.82% | 30.78% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW garden_hero_loadouts AS WITH garden AS (SELECT * FROM matches WHERE map = 'garden') 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 garden) * 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 garden UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM garden) 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;