home / season_26_matches

banana_depot_scene_loadouts (view)

14 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 73 54 19 73.97% 2.42% 63.91%
BananaFarm, MortarMonkey, TackShooter 339 222 117 65.49% 11.24% 60.43%
BananaFarm, BombShooter, SpikeFactory 449 261 188 58.13% 14.89% 53.57%
BananaFarm, BombShooter, MonkeySub 88 51 37 57.95% 2.92% 47.64%
BananaFarm, BombShooter, WizardMonkey 118 66 52 55.93% 3.91% 46.97%
BananaFarm, TackShooter, WizardMonkey 200 107 93 53.50% 6.63% 46.59%
BananaFarm, IceMonkey, TackShooter 45 27 18 60.00% 1.49% 45.69%
BananaFarm, GlueGunner, TackShooter 49 29 20 59.18% 1.62% 45.42%
BombShooter, SpikeFactory, WizardMonkey 38 22 16 57.89% 1.26% 42.20%
SpikeFactory, TackShooter, WizardMonkey 56 27 29 48.21% 1.86% 35.13%
BananaFarm, SpikeFactory, TackShooter 33 16 17 48.48% 1.09% 31.43%
BananaFarm, BombShooter, MortarMonkey 31 14 17 45.16% 1.03% 27.64%
GlueGunner, MonkeyVillage, TackShooter 58 22 36 37.93% 1.92% 25.44%
GlueGunner, HeliPilot, MonkeySub 31 13 18 41.94% 1.03% 24.56%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

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