home / season_27_matches

dino_graveyard_hero_loadouts (view)

27 rows

✖

✎ View and edit SQL

This data as json, CSV (advanced)

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

Hero Loadout Games Wins Losses Winrate Pickrate Winrate_LowerBound_95CI
Jericho BananaFarm, EngineerMonkey, MonkeyAce 469 316 153 67.38% 7.63% 63.13%
Etienne_Bee BananaFarm, BoomerangMonkey, EngineerMonkey 37 27 10 72.97% 0.60% 58.66%
Obyn BananaFarm, Druid, MonkeySub 362 225 137 62.15% 5.89% 57.16%
Etienne BananaFarm, DartMonkey, GlueGunner 36 24 12 66.67% 0.59% 51.27%
PatFusty_Snowman BananaFarm, DartlingGunner, IceMonkey 88 52 36 59.09% 1.43% 48.82%
Jericho_Highwayman BananaFarm, EngineerMonkey, MonkeyAce 43 26 17 60.47% 0.70% 45.85%
Benjamin DartlingGunner, MonkeyVillage, SuperMonkey 119 65 54 54.62% 1.94% 45.68%
Ezili BananaFarm, BombShooter, WizardMonkey 34 21 13 61.76% 0.55% 45.43%
Bonnie Alchemist, MonkeyAce, SpikeFactory 41 24 17 58.54% 0.67% 43.46%
Bonnie Alchemist, MonkeyBuccaneer, SpikeFactory 111 56 55 50.45% 1.81% 41.15%
Bonnie MonkeyAce, MonkeyVillage, SpikeFactory 48 26 22 54.17% 0.78% 40.07%
Gwendolin_Science GlueGunner, HeliPilot, MonkeyVillage 153 73 80 47.71% 2.49% 39.80%
Bonnie DartlingGunner, SpikeFactory, SuperMonkey 36 20 16 55.56% 0.59% 39.32%
Jericho_StarCaptain BananaFarm, EngineerMonkey, MonkeyAce 51 27 24 52.94% 0.83% 39.24%
Gwendolin_Science GlueGunner, MonkeySub, SuperMonkey 24 14 10 58.33% 0.39% 38.61%
Gwendolin_Science GlueGunner, MonkeyVillage, TackShooter 33 18 15 54.55% 0.54% 37.56%
Quincy BananaFarm, TackShooter, WizardMonkey 25 14 11 56.00% 0.41% 36.54%
Etienne EngineerMonkey, TackShooter, WizardMonkey 30 16 14 53.33% 0.49% 35.48%
Bonnie Alchemist, DartlingGunner, SpikeFactory 28 15 13 53.57% 0.46% 35.10%
Benjamin BananaFarm, DartlingGunner, SuperMonkey 65 29 36 44.62% 1.06% 32.53%
PatFusty_Snowman DartlingGunner, IceMonkey, MonkeyVillage 23 12 11 52.17% 0.37% 31.76%
Obyn_Ocean Alchemist, HeliPilot, NinjaMonkey 30 14 16 46.67% 0.49% 28.81%
Jericho BananaFarm, TackShooter, WizardMonkey 20 10 10 50.00% 0.33% 28.09%
Gwendolin_Science BananaFarm, GlueGunner, MonkeySub 21 10 11 47.62% 0.34% 26.26%
Quincy BananaFarm, SniperMonkey, WizardMonkey 21 10 11 47.62% 0.34% 26.26%
Bonnie Druid, SniperMonkey, SuperMonkey 22 10 12 45.45% 0.36% 24.65%
Bonnie DartlingGunner, MonkeyVillage, SuperMonkey 31 12 19 38.71% 0.50% 21.56%

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE VIEW dino_graveyard_hero_loadouts AS 
WITH dino_graveyard AS
    (SELECT *
    FROM matches
    WHERE map = 'dino_graveyard')
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 dino_graveyard) * 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 dino_graveyard
                  UNION ALL
                  SELECT rHero                               AS Hero,
                         printf('%s, %s, %s', rt1, rt2, rt3) AS Loadout,
                         NOT playerLeftWin                   AS Wins
                  FROM dino_graveyard)
            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 714.771ms
  • Sort ascending
  • Sort descending
  • Facet by this
  • Hide this column
  • Show all columns
  • Show not-blank rows