home / season_31_matches

splashdown_loadouts (view)

16 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
BananaFarm, BoomerangMonkey, MortarMonkey 53 42 11 79.25% 1.81% 68.33%
BananaFarm, EngineerMonkey, WizardMonkey 105 76 29 72.38% 3.59% 63.83%
BananaFarm, Druid, MonkeySub 61 44 17 72.13% 2.09% 60.88%
BananaFarm, BoomerangMonkey, WizardMonkey 37 26 11 70.27% 1.27% 55.54%
HeliPilot, IceMonkey, MonkeyVillage 79 52 27 65.82% 2.70% 55.36%
BananaFarm, MonkeySub, WizardMonkey 54 36 18 66.67% 1.85% 54.09%
Alchemist, MonkeyBuccaneer, SpikeFactory 350 194 156 55.43% 11.97% 50.22%
BananaFarm, BombShooter, MonkeySub 52 31 21 59.62% 1.78% 46.28%
BananaFarm, TackShooter, WizardMonkey 142 77 65 54.23% 4.86% 46.03%
BananaFarm, MonkeySub, TackShooter 41 24 17 58.54% 1.40% 43.46%
Alchemist, DartlingGunner, SuperMonkey 27 16 11 59.26% 0.92% 40.73%
BananaFarm, IceMonkey, MonkeySub 236 106 130 44.92% 8.07% 38.57%
BananaFarm, MonkeySub, SpikeFactory 30 16 14 53.33% 1.03% 35.48%
BananaFarm, SniperMonkey, TackShooter 20 10 10 50.00% 0.68% 28.09%
BananaFarm, SniperMonkey, WizardMonkey 23 10 13 43.48% 0.79% 23.22%
BananaFarm, BoomerangMonkey, MonkeySub 30 11 19 36.67% 1.03% 19.42%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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