home / season_25_matches

mayan_map_01_loadouts (view)

20 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: Games, Wins, Losses, Pickrate

Loadout Games Wins Losses Winrate Pickrate WinRate_LowerBound_95CI
GlueGunner, MonkeyVillage, TackShooter 241 146 95 60.58% 8.35% 54.41%
BananaFarm, GlueGunner, TackShooter 35 24 11 68.57% 1.21% 53.19%
BananaFarm, TackShooter, WizardMonkey 94 59 35 62.77% 3.26% 52.99%
GlueGunner, HeliPilot, MonkeyVillage 50 33 17 66.00% 1.73% 52.87%
BananaFarm, BombShooter, SpikeFactory 35 22 13 62.86% 1.21% 46.85%
BananaFarm, BombShooter, WizardMonkey 36 22 14 61.11% 1.25% 45.19%
SniperMonkey, SpikeFactory, TackShooter 28 17 11 60.71% 0.97% 42.62%
Alchemist, GlueGunner, NinjaMonkey 48 27 21 56.25% 1.66% 42.22%
DartMonkey, GlueGunner, MonkeyVillage 37 21 16 56.76% 1.28% 40.79%
GlueGunner, MonkeyVillage, NinjaMonkey 64 31 33 48.44% 2.22% 36.19%
BananaFarm, DartMonkey, GlueGunner 23 12 11 52.17% 0.80% 31.76%
DartMonkey, IceMonkey, MonkeyVillage 21 11 10 52.38% 0.73% 31.02%
BananaFarm, DartlingGunner, SuperMonkey 36 17 19 47.22% 1.25% 30.91%
DartlingGunner, MonkeyVillage, SuperMonkey 32 15 17 46.88% 1.11% 29.58%
SniperMonkey, TackShooter, WizardMonkey 23 11 12 47.83% 0.80% 27.41%
SniperMonkey, SuperMonkey, TackShooter 24 11 13 45.83% 0.83% 25.90%
GlueGunner, SniperMonkey, WizardMonkey 25 11 14 44.00% 0.87% 24.54%
IceMonkey, MonkeyVillage, TackShooter 55 20 35 36.36% 1.91% 23.65%
SniperMonkey, SpikeFactory, WizardMonkey 24 10 14 41.67% 0.83% 21.94%
SniperMonkey, SuperMonkey, WizardMonkey 41 15 26 36.59% 1.42% 21.84%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW mayan_map_01_loadouts AS 
WITH mayan_map_01 AS
    (SELECT *
    FROM matches
    WHERE map = 'mayan_map_01')
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 mayan_map_01) * 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 mayan_map_01
                  UNION ALL
                  SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout,
                         NOT playerLeftWin                   AS Win
                  FROM mayan_map_01)
            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;
Powered by Datasette · Queries took 502.46ms