home / season_25_matches

banana_depot_scene_loadouts (view)

13 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: Games, Wins, Losses, Winrate, Pickrate, WinRate_LowerBound_95CI

Loadout Games Wins Losses Winrate Pickrate WinRate_LowerBound_95CI
BananaFarm, MortarMonkey, TackShooter 306 205 101 66.99% 11.91% 61.72%
BananaFarm, BombShooter, SpikeFactory 357 214 143 59.94% 13.89% 54.86%
BananaFarm, BombShooter, MonkeySub 53 35 18 66.04% 2.06% 53.29%
BananaFarm, TackShooter, WizardMonkey 164 85 79 51.83% 6.38% 44.18%
SpikeFactory, TackShooter, WizardMonkey 53 29 24 54.72% 2.06% 41.32%
BombShooter, SpikeFactory, WizardMonkey 24 14 10 58.33% 0.93% 38.61%
SniperMonkey, SpikeFactory, TackShooter 23 13 10 56.52% 0.89% 36.26%
BananaFarm, BombShooter, WizardMonkey 63 30 33 47.62% 2.45% 35.29%
BananaFarm, BombShooter, MortarMonkey 28 15 13 53.57% 1.09% 35.10%
BananaFarm, SniperMonkey, TackShooter 28 14 14 50.00% 1.09% 31.48%
BananaFarm, GlueGunner, TackShooter 46 21 25 45.65% 1.79% 31.26%
GlueGunner, MonkeyVillage, TackShooter 46 21 25 45.65% 1.79% 31.26%
BananaFarm, SpikeFactory, TackShooter 21 11 10 52.38% 0.82% 31.02%

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 611.939ms