home / season_26_matches

times_up_loadouts (view)

18 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
MortarMonkey, SniperMonkey, TackShooter 49 35 14 71.43% 1.47% 58.78%
BananaFarm, IceMonkey, TackShooter 406 253 153 62.32% 12.16% 57.60%
BananaFarm, BombShooter, TackShooter 49 34 15 69.39% 1.47% 56.48%
BananaFarm, MortarMonkey, TackShooter 234 143 91 61.11% 7.01% 54.86%
BananaFarm, GlueGunner, TackShooter 173 107 66 61.85% 5.18% 54.61%
BananaFarm, BombShooter, WizardMonkey 162 95 67 58.64% 4.85% 51.06%
BananaFarm, TackShooter, WizardMonkey 256 141 115 55.08% 7.66% 48.98%
BananaFarm, BombShooter, MonkeySub 76 41 35 53.95% 2.28% 42.74%
BananaFarm, GlueGunner, MonkeySub 30 18 12 60.00% 0.90% 42.47%
IceMonkey, MonkeyVillage, TackShooter 32 18 14 56.25% 0.96% 39.06%
BananaFarm, IceMonkey, NinjaMonkey 35 19 16 54.29% 1.05% 37.78%
GlueGunner, MonkeyVillage, TackShooter 88 37 51 42.05% 2.63% 31.73%
EngineerMonkey, TackShooter, WizardMonkey 21 11 10 52.38% 0.63% 31.02%
BananaFarm, MonkeySub, TackShooter 66 28 38 42.42% 1.98% 30.50%
BananaFarm, SniperMonkey, TackShooter 24 12 12 50.00% 0.72% 30.00%
MonkeyBuccaneer, SniperMonkey, WizardMonkey 21 10 11 47.62% 0.63% 26.26%
BananaFarm, Druid, MonkeySub 39 13 26 33.33% 1.17% 18.54%
BananaFarm, SniperMonkey, WizardMonkey 28 10 18 35.71% 0.84% 17.97%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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