precious_space_towers (view)
20 rows
This data as json, CSV (advanced)
Suggested facets: Games, Wins, Losses, Pickrate
Tower | Games | Wins | Losses | Winrate | Pickrate | Winrate_LowerBound_95CI |
---|---|---|---|---|---|---|
BananaFarm | 752 | 403 | 349 | 53.59% | 23.08% | 50.03% |
Druid | 81 | 49 | 32 | 60.49% | 2.49% | 49.85% |
MonkeySub | 379 | 203 | 176 | 53.56% | 11.63% | 48.54% |
BombShooter | 256 | 138 | 118 | 53.91% | 7.86% | 47.80% |
DartlingGunner | 284 | 145 | 139 | 51.06% | 8.72% | 45.24% |
BoomerangMonkey | 148 | 74 | 74 | 50.00% | 4.54% | 41.94% |
SpikeFactory | 149 | 74 | 75 | 49.66% | 4.57% | 41.64% |
MortarMonkey | 45 | 25 | 20 | 55.56% | 1.38% | 41.04% |
NinjaMonkey | 156 | 76 | 80 | 48.72% | 4.79% | 40.87% |
TackShooter | 111 | 53 | 58 | 47.75% | 3.41% | 38.46% |
WizardMonkey | 196 | 89 | 107 | 45.41% | 6.02% | 38.44% |
EngineerMonkey | 37 | 20 | 17 | 54.05% | 1.14% | 38.00% |
SniperMonkey | 109 | 51 | 58 | 46.79% | 3.35% | 37.42% |
IceMonkey | 67 | 33 | 34 | 49.25% | 2.06% | 37.28% |
MonkeyBuccaneer | 59 | 29 | 30 | 49.15% | 1.81% | 36.40% |
HeliPilot | 46 | 22 | 24 | 47.83% | 1.41% | 33.39% |
Alchemist | 65 | 28 | 37 | 43.08% | 2.00% | 31.04% |
SuperMonkey | 119 | 46 | 73 | 38.66% | 3.65% | 29.91% |
MonkeyVillage | 100 | 39 | 61 | 39.00% | 3.07% | 29.44% |
GlueGunner | 67 | 18 | 49 | 26.87% | 2.06% | 16.25% |
Advanced export
JSON shape: default, array, newline-delimited
CREATE VIEW precious_space_towers AS WITH precious_space AS (SELECT * FROM matches WHERE map = 'precious_space') SELECT Tower, 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 Tower, Games, Wins, Losses, CAST(Wins AS REAL) / Games AS WR, CAST(Games AS REAL) / ( (SELECT COUNT(*) FROM precious_space) * 6) AS PR FROM (SELECT Tower, SUM(Win) + SUM(NOT Win) AS Games, SUM(Win) AS Wins, SUM(NOT Win) AS Losses FROM (SELECT lt1 AS Tower, playerLeftWin AS Win FROM precious_space UNION ALL SELECT lt2 AS Tower, playerLeftWin AS Win FROM precious_space UNION ALL SELECT lt3 AS Tower, playerLeftWin AS Win FROM precious_space UNION ALL SELECT rt1 AS Tower, NOT playerLeftWin AS Win FROM precious_space UNION ALL SELECT rt2 AS Tower, NOT playerLeftWin AS Win FROM precious_space UNION ALL SELECT rt3 AS Tower, NOT playerLeftWin AS Win FROM precious_space) GROUP BY Tower)) WHERE Wins >= 10 AND Losses >= 10 AND LENGTH(Winrate_LowerBound_95CI) = 6 ORDER BY Winrate_LowerBound_95CI DESC;