Dashboard: IMDb Dashboard
This dashboard answers the following questions:
- How many movies are present in the database?
- What is the average worldwide earnings from the movies?
- What is the average domestic earnings from the movies?
- What are the top rated movies by IMDb?
- What is the most popular movie genre across various age groups?
This dashboard contains 4 cards and 1 table.
Usage
Install the mod:
mkdir dashboardscd dashboardspowerpipe mod initpowerpipe mod install github.com/turbot/powerpipe-mod-imdb
Start the Powerpipe server:
powerpipe server
Open http://localhost:9033 in your browser and select IMDb Dashboard dashboard.
You could also snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe dashboard run imdb.dashboard.imdb --share
Queries
This dashboard uses the the following queries:
select avg(Budget) as "Average Budget"from IMDb;