Dashboard: NBA Dashboard
This dashboard answers the following questions:
- How many active players are there in the NBA?
- What is the total number of NBA teams?
- How many rookie players are currently in the NBA?
- How do home wins compare to away wins across NBA teams?
- Which teams score more points at home versus away, and what are these scores?
- Which are the top 10 teams by total wins, and how many wins does each team have?
- What are the arena capacities for NBA teams, and which team has the largest arena?
This dashboard contains 3 cards.
Usage
Install the mod:
mkdir dashboardscd dashboardspowerpipe mod initpowerpipe mod install github.com/turbot/powerpipe-mod-nba
Start the Powerpipe server:
powerpipe server
Open http://localhost:9033 in your browser and select NBA Dashboard dashboard.
You could also snapshot and share results via Turbot Pipes:
powerpipe loginpowerpipe dashboard run nba.dashboard.nba --share
Queries
This dashboard uses the the following queries:
select count(*) as "Total Active Players"from playerwhere is_active = 1;