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 dashboardscd dashboardspowerpipe mod initpowerpipe 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 loginpowerpipe 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_datawhere `platforms_info` like "%'Platform Metascore'%" and genres is not nullgroup by genresorder by "Average Platform Meta Score" desclimit 10;