home / s24+_matches

splashdown_hero_loadouts (view)

20 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Hero Loadout Games Wins Losses Winrate Pickrate Winrate_LowerBound_95CI
Quincy BananaFarm, BoomerangMonkey, MortarMonkey 57 47 10 82.46% 1.30% 72.58%
Obyn BananaFarm, Druid, MonkeySub 66 51 15 77.27% 1.50% 67.16%
Quincy_Cyber BananaFarm, EngineerMonkey, WizardMonkey 115 86 29 74.78% 2.62% 66.85%
Quincy_Cyber BananaFarm, TackShooter, WizardMonkey 122 82 40 67.21% 2.78% 58.88%
Quincy_Cyber BananaFarm, BombShooter, MonkeySub 40 28 12 70.00% 0.91% 55.80%
StrikerJones_Biker HeliPilot, IceMonkey, MonkeyVillage 93 59 34 63.44% 2.12% 53.65%
Quincy_Cyber BananaFarm, BoomerangMonkey, WizardMonkey 32 22 10 68.75% 0.73% 52.69%
Bonnie Alchemist, MonkeyBuccaneer, SpikeFactory 279 154 125 55.20% 6.36% 49.36%
Quincy_Cyber BananaFarm, MonkeySub, TackShooter 39 25 14 64.10% 0.89% 49.05%
Quincy_Cyber Alchemist, MonkeyBuccaneer, SpikeFactory 154 85 69 55.19% 3.51% 47.34%
Adora Alchemist, DartlingGunner, SuperMonkey 40 24 16 60.00% 0.91% 44.82%
Churchill_Sentai BananaFarm, IceMonkey, MonkeySub 46 25 21 54.35% 1.05% 39.95%
Jericho BananaFarm, IceMonkey, MonkeySub 76 37 39 48.68% 1.73% 37.45%
Quincy_Cyber BananaFarm, MonkeySub, SpikeFactory 25 14 11 56.00% 0.57% 36.54%
Quincy_Cyber BananaFarm, IceMonkey, MonkeySub 70 30 40 42.86% 1.60% 31.26%
Etienne EngineerMonkey, TackShooter, WizardMonkey 21 11 10 52.38% 0.48% 31.02%
Quincy_Cyber BananaFarm, IceMonkey, WizardMonkey 20 10 10 50.00% 0.46% 28.09%
Jericho BananaFarm, TackShooter, WizardMonkey 21 10 11 47.62% 0.48% 26.26%
Quincy BananaFarm, TackShooter, WizardMonkey 34 14 20 41.18% 0.77% 24.63%
Etienne_Bee BananaFarm, IceMonkey, MonkeySub 50 19 31 38.00% 1.14% 24.55%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW splashdown_hero_loadouts AS 
WITH splashdown AS
    (SELECT *
    FROM matches
    WHERE map = 'splashdown')
SELECT Hero,
       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 Hero,
             Loadout,
             Games,
             Wins,
             Losses,
             CAST(Wins AS REAL) / Games AS WR,
             CAST(Games AS REAL) / (
                 (SELECT COUNT(*)
                  FROM splashdown) * 2)    AS PR
      FROM (SELECT Hero,
                   Loadout,
                   SUM(Wins) + SUM(NOT Wins) AS Games,
                   SUM(Wins)                 AS Wins,
                   SUM(NOT Wins)             AS Losses
            FROM (SELECT lHero                               AS Hero,
                         printf('%s, %s, %s', lt1, lt2, lt3) AS Loadout,
                         playerLeftWin                       AS Wins
                  FROM splashdown
                  UNION ALL
                  SELECT rHero                               AS Hero,
                         printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout,
                         NOT playerLeftWin                   AS Wins
                  FROM splashdown)
            GROUP BY Hero,
                     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 3876.268ms