bloon_bot_factory_loadouts (view)
17 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Pickrate
Loadout | Games | Wins | Losses | Winrate | Pickrate | WinRate_LowerBound_95CI |
---|---|---|---|---|---|---|
Alchemist, HeliPilot, MortarMonkey | 112 | 77 | 35 | 68.75% | 5.94% | 60.17% |
GlueGunner, HeliPilot, MortarMonkey | 215 | 134 | 81 | 62.33% | 11.40% | 55.85% |
HeliPilot, MonkeyBuccaneer, MortarMonkey | 174 | 98 | 76 | 56.32% | 9.23% | 48.95% |
MonkeyAce, MonkeyBuccaneer, MortarMonkey | 83 | 47 | 36 | 56.63% | 4.40% | 45.96% |
BananaFarm, MonkeyBuccaneer, MortarMonkey | 32 | 20 | 12 | 62.50% | 1.70% | 45.73% |
HeliPilot, MonkeyAce, MortarMonkey | 89 | 49 | 40 | 55.06% | 4.72% | 44.72% |
GlueGunner, HeliPilot, MonkeyVillage | 27 | 16 | 11 | 59.26% | 1.43% | 40.73% |
Alchemist, MonkeyAce, MortarMonkey | 24 | 14 | 10 | 58.33% | 1.27% | 38.61% |
HeliPilot, MortarMonkey, SuperMonkey | 30 | 16 | 14 | 53.33% | 1.59% | 35.48% |
HeliPilot, MortarMonkey, SniperMonkey | 26 | 14 | 12 | 53.85% | 1.38% | 34.68% |
BananaFarm, HeliPilot, MortarMonkey | 48 | 22 | 26 | 45.83% | 2.55% | 31.74% |
HeliPilot, MonkeyVillage, MortarMonkey | 48 | 21 | 27 | 43.75% | 2.55% | 29.72% |
HeliPilot, MonkeySub, MortarMonkey | 25 | 12 | 13 | 48.00% | 1.33% | 28.42% |
HeliPilot, MonkeyBuccaneer, SniperMonkey | 36 | 16 | 20 | 44.44% | 1.91% | 28.21% |
HeliPilot, MonkeyAce, SniperMonkey | 40 | 17 | 23 | 42.50% | 2.12% | 27.18% |
MonkeyAce, MortarMonkey, SniperMonkey | 29 | 13 | 16 | 44.83% | 1.54% | 26.73% |
MonkeyAce, MonkeyBuccaneer, SniperMonkey | 33 | 12 | 21 | 36.36% | 1.75% | 19.95% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW bloon_bot_factory_loadouts AS WITH bloon_bot_factory AS (SELECT * FROM matches WHERE map = 'bloon_bot_factory') SELECT 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 Loadout, Games, Wins, Losses, CAST(Wins AS REAL) / Games AS WR, CAST(Games AS REAL) / ( (SELECT COUNT(*) FROM bloon_bot_factory) * 2) AS PR FROM (SELECT Loadout, SUM(Win) + SUM(NOT Win) AS Games, SUM(Win) AS Wins, SUM(NOT Win) AS Losses FROM (SELECT printf('%s, %s, %s', lt1, lt2, lt3) AS Loadout, playerLeftWin AS Win FROM bloon_bot_factory UNION ALL SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout, NOT playerLeftWin AS Win FROM bloon_bot_factory) GROUP BY 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;