home / season_25_matches

up_on_the_roof_hero_loadouts (view)

32 rows

✎ View and edit SQL

This data as json, CSV (advanced)

Suggested facets: Hero, Loadout, Games, Wins, Losses, Winrate, Pickrate

Hero Loadout Games Wins Losses Winrate Pickrate Winrate_LowerBound_95CI
Obyn DartlingGunner, Druid, SpikeFactory 54 44 10 81.48% 0.96% 71.12%
Obyn_Ocean Alchemist, GlueGunner, NinjaMonkey 51 40 11 78.43% 0.91% 67.14%
Gwendolin_Science GlueGunner, MonkeyVillage, TackShooter 220 148 72 67.27% 3.90% 61.07%
Bonnie DartlingGunner, SpikeFactory, SuperMonkey 71 47 24 66.20% 1.26% 55.19%
Bonnie DartlingGunner, MonkeyVillage, SuperMonkey 62 41 21 66.13% 1.10% 54.35%
Gwendolin_Science GlueGunner, MonkeyVillage, NinjaMonkey 150 89 61 59.33% 2.66% 51.47%
Gwendolin_Science DartMonkey, GlueGunner, MonkeyVillage 79 48 31 60.76% 1.40% 49.99%
Bonnie BoomerangMonkey, MonkeyVillage, SuperMonkey 34 22 12 64.71% 0.60% 48.64%
Adora IceMonkey, MonkeyVillage, SuperMonkey 139 79 60 56.83% 2.47% 48.60%
Gwendolin IceMonkey, MonkeyVillage, TackShooter 28 18 10 64.29% 0.50% 46.54%
Adora MonkeyVillage, SniperMonkey, SuperMonkey 72 41 31 56.94% 1.28% 45.51%
Adora HeliPilot, IceMonkey, SuperMonkey 36 22 14 61.11% 0.64% 45.19%
Gwendolin_Science GlueGunner, HeliPilot, MonkeyVillage 74 41 33 55.41% 1.31% 44.08%
Ezili BananaFarm, BombShooter, WizardMonkey 45 26 19 57.78% 0.80% 43.35%
Benjamin_DJ DartlingGunner, MonkeyVillage, SuperMonkey 51 29 22 56.86% 0.91% 43.27%
Adora DartlingGunner, MonkeyVillage, SuperMonkey 52 29 23 55.77% 0.92% 42.27%
Bonnie Alchemist, NinjaMonkey, SpikeFactory 55 30 25 54.55% 0.98% 41.39%
Etienne BananaFarm, BoomerangMonkey, SpikeFactory 31 18 13 58.06% 0.55% 40.69%
PatFusty DartMonkey, GlueGunner, MonkeyVillage 28 15 13 53.57% 0.50% 35.10%
Etienne_Bee DartlingGunner, Druid, MonkeyVillage 35 18 17 51.43% 0.62% 34.87%
Gwendolin_Science Alchemist, GlueGunner, NinjaMonkey 54 26 28 48.15% 0.96% 34.82%
Adora BoomerangMonkey, MonkeyVillage, SuperMonkey 40 20 20 50.00% 0.71% 34.50%
Adora HeliPilot, MonkeyVillage, SuperMonkey 53 25 28 47.17% 0.94% 33.73%
Obyn_Ocean Alchemist, MonkeyVillage, NinjaMonkey 31 15 16 48.39% 0.55% 30.79%
Bonnie Alchemist, DartlingGunner, SpikeFactory 26 13 13 50.00% 0.46% 30.78%
Gwendolin_Science GlueGunner, MonkeyVillage, SuperMonkey 29 14 15 48.28% 0.51% 30.09%
Benjamin DartlingGunner, MonkeyVillage, SuperMonkey 22 11 11 50.00% 0.39% 29.11%
Etienne MonkeyVillage, SniperMonkey, TackShooter 23 11 12 47.83% 0.41% 27.41%
Etienne DartMonkey, GlueGunner, MonkeyVillage 29 13 16 44.83% 0.51% 26.73%
Etienne BananaFarm, DartMonkey, GlueGunner 25 11 14 44.00% 0.44% 24.54%
Bonnie SniperMonkey, SpikeFactory, SuperMonkey 27 10 17 37.04% 0.48% 18.82%
Adora DartMonkey, MonkeyVillage, SuperMonkey 34 10 24 29.41% 0.60% 14.10%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW up_on_the_roof_hero_loadouts AS 
WITH up_on_the_roof AS
    (SELECT *
    FROM matches
    WHERE map = 'up_on_the_roof')
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 up_on_the_roof) * 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 up_on_the_roof
                  UNION ALL
                  SELECT rHero                               AS Hero,
                         printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout,
                         NOT playerLeftWin                   AS Wins
                  FROM up_on_the_roof)
            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 1023.641ms