turbot/powerpipe-mod-videogames

Dashboard: Video Games Dashboard

This dashboard answers the following questions:

  • How many video games are currently cataloged in the database?
  • What is the total number of game developers?
  • How many publishers are involved in the video games listed?
  • Which are the top 10 video games rated by user score, and what scores did they achieve?
  • What are the top 10 game genres by the number of games, and how many games are there in each genre?
This dashboard contains 4 cards.

Usage

Install the mod:

mkdir dashboards
cd dashboards
powerpipe mod init
powerpipe mod install github.com/turbot/powerpipe-mod-videogames

Start the Powerpipe server:

powerpipe server

Open http://localhost:9033 in your browser and select Video Games Dashboard dashboard.

You could also snapshot and share results via Turbot Pipes:

powerpipe login
powerpipe dashboard run videogames.dashboard.videogames --share

Queries

This dashboard uses the the following queries:
select
genres,
avg(cast(substring_index(substring_index(substring_index(`platforms_info`, "'Platform Metascore': '", -1), "'", 1), "'", 1) as unsigned)) as "Average Platform Meta Score"
from
game_data
where
`platforms_info` like "%'Platform Metascore'%"
and genres is not null
group by
genres
order by
"Average Platform Meta Score" desc
limit 10;