building_site_scene_hero_loadouts (view)
14 rows
This data as json, CSV (advanced)
Suggested facets: Hero, Loadout, Wins, Losses, Winrate_LowerBound_95CI
Hero | Loadout | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|---|
Etienne | BananaFarm, BombShooter, TackShooter | 37 | 27 | 10 | 72.97% | 1.67% | 58.66% |
Quincy_Cyber | BananaFarm, TackShooter, WizardMonkey | 204 | 133 | 71 | 65.20% | 9.23% | 58.66% |
Adora | BananaFarm, MortarMonkey, TackShooter | 54 | 37 | 17 | 68.52% | 2.44% | 56.13% |
Quincy | BananaFarm, DartMonkey, MortarMonkey | 70 | 45 | 25 | 64.29% | 3.17% | 53.06% |
Quincy_Cyber | BananaFarm, DartMonkey, MortarMonkey | 94 | 57 | 37 | 60.64% | 4.25% | 50.76% |
Adora | BananaFarm, TackShooter, WizardMonkey | 32 | 21 | 11 | 65.63% | 1.45% | 49.17% |
Quincy | BananaFarm, TackShooter, WizardMonkey | 104 | 58 | 46 | 55.77% | 4.71% | 46.22% |
Quincy_Cyber | BananaFarm, MortarMonkey, TackShooter | 123 | 66 | 57 | 53.66% | 5.57% | 44.85% |
Etienne_Bee | BananaFarm, TackShooter, WizardMonkey | 26 | 16 | 10 | 61.54% | 1.18% | 42.84% |
Adora | BananaFarm, DartMonkey, SpikeFactory | 34 | 20 | 14 | 58.82% | 1.54% | 42.28% |
Adora | BananaFarm, DartMonkey, MortarMonkey | 193 | 92 | 101 | 47.67% | 8.73% | 40.62% |
Quincy | BananaFarm, MortarMonkey, TackShooter | 44 | 21 | 23 | 47.73% | 1.99% | 32.97% |
Adora_Fateweaver | BananaFarm, DartMonkey, MortarMonkey | 29 | 13 | 16 | 44.83% | 1.31% | 26.73% |
StrikerJones | MortarMonkey, SniperMonkey, TackShooter | 24 | 10 | 14 | 41.67% | 1.09% | 21.94% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW building_site_scene_hero_loadouts AS WITH building_site_scene AS (SELECT * FROM matches WHERE map = 'building_site_scene') 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 building_site_scene) * 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 building_site_scene UNION ALL SELECT rHero AS Hero, printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Wins FROM building_site_scene) 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;