home / season_26_matches

koru_loadouts (view)

19 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: Games, Losses, Winrate, WinRate_LowerBound_95CI

Loadout Games Wins Losses Winrate Pickrate WinRate_LowerBound_95CI
BananaFarm, DartlingGunner, IceMonkey 70 60 10 85.71% 1.85% 77.52%
DartlingGunner, MonkeyVillage, SuperMonkey 53 41 12 77.36% 1.40% 66.09%
BananaFarm, IceMonkey, TackShooter 92 66 26 71.74% 2.43% 62.54%
BananaFarm, TackShooter, WizardMonkey 532 332 200 62.41% 14.04% 58.29%
BananaFarm, MortarMonkey, TackShooter 247 144 103 58.30% 6.52% 52.15%
BananaFarm, BoomerangMonkey, MortarMonkey 78 49 29 62.82% 2.06% 52.10%
BananaFarm, GlueGunner, TackShooter 196 114 82 58.16% 5.17% 51.26%
BananaFarm, DartMonkey, MortarMonkey 46 25 21 54.35% 1.21% 39.95%
BoomerangMonkey, MortarMonkey, SpikeFactory 58 30 28 51.72% 1.53% 38.86%
BananaFarm, BombShooter, WizardMonkey 93 44 49 47.31% 2.45% 37.16%
BananaFarm, Druid, MonkeySub 56 28 28 50.00% 1.48% 36.90%
BananaFarm, BombShooter, SpikeFactory 32 16 16 50.00% 0.84% 32.68%
SpikeFactory, TackShooter, WizardMonkey 57 26 31 45.61% 1.50% 32.68%
BananaFarm, BoomerangMonkey, SpikeFactory 76 31 45 40.79% 2.01% 29.74%
BananaFarm, DartlingGunner, SuperMonkey 22 11 11 50.00% 0.58% 29.11%
BananaFarm, SniperMonkey, TackShooter 42 18 24 42.86% 1.11% 27.89%
BananaFarm, DartMonkey, GlueGunner 22 10 12 45.45% 0.58% 24.65%
GlueGunner, MonkeyVillage, TackShooter 97 33 64 34.02% 2.56% 24.59%
SniperMonkey, TackShooter, WizardMonkey 40 15 25 37.50% 1.06% 22.50%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW koru_loadouts AS 
WITH koru AS
    (SELECT *
    FROM matches
    WHERE map = 'koru')
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 koru) * 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 koru
                  UNION ALL
                  SELECT printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout,
                         NOT playerLeftWin                   AS Win
                  FROM koru)
            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 663.481ms