Data helps organizations make better decisions. With a programming language like Python to analyze your data and transform data into visual representations, you can effortlessly tell the story of your business. One way to create customized visuals from your data would be to use data visualization libraries in Python like Matplotlib, Seaborn, Ggplot2, Plotly, or Pandas. When you want to accomplish this task with little or no code (not even SQL), you might consider using tools like Metabase.
With Metabase, a powerful visualization tool, you can quickly turn your data into easy-to-understand visuals like graphs, pie charts, flow diagrams, and much more. Then, using Metabase’s intuitive interface, you can cut through the data noise and focus on what’s essential for your business.
In the previous blog of this series, we explained how to use Python to load data into Supabase. In this blog, we will create different kinds of charts out of the data stored in Supabase using Metabase.
Prerequisites
Before we dive in, let’s look at some prerequisites that you will need:
- Supabase project with data
Based on our previous article, we assume we already have a Supabase project setup and have data loaded into it.
- Metabase Docker Container
To take advantage of the open-source version of Metabase, you can use the Metabase docker container here.
Visualizing data in Supabase with Metabase
Launching Metabase
To launch Metabase, simply go to http://localhost:3000/setup/ which is the default port that the Metabase server will be listening to.
After Metabase is launched, select your preferred language and add your contact information. In the Add your data markdown, you will need to choose PostgreSQL.
You will be prompted to add the necessary connection information to your Supabase project. Go to your Supabase project and hit Settings > Database to get the database info.
Enter the necessary information on Metabase and hit next. Finally, select your data preference, after which you will land on the Metabase homepage.
View Database and Tables
We can now see the "Supabase DB" Supabase project under "Our data".
To view the tables, go to SupabaseDB > public
View Table Data Insights
Go back to the home page and select public schema under "Try these x-rays based on your data"
Here is the output of the product table.
As you can see, we can get some handy information from this like:
- How many products are present with a given range of inventory count.
- How many products are present for a given range of price.
- The ratio between the number of employees to the number of products.
- How many products each vendor has created.
If you have column-specific views, you can select the zoom-in option under More x-rays.
For example, let's select the total employees field.
With information like this, you will be able to answer some key questions like
- What are some common statistics for company employees like average, minimum, maximum, and standard deviation?
- What is the distribution of the employees across different geo locations?
- What is the distribution of the employees across different vendors?
Using custom SQL queries
We can also use custom queries to set up our dashboards. To do this, go to New > SQL query.
Next, under the database, select "SupabaseDB".
We will be using the following SQL query:
_10select "Vendor".vendor_name, product_name, "Vendor".total_employees_10from_10 "Product"_10 left join "Vendor" on "Product".vendor_id = "Vendor".vendor_id_10where "Vendor".total_employees;
This query should fetch us the vendor name and the product where the number of employees for a given vendor is less than 110.
To run the SQL query, hit the play button.
This will be shown below in the output window. To visualize the data, hit the visualization button.
Next, select the type of visualizer you want. Let us choose Bar.
Choose the appropriate x-axis and y-axis fields, and you will be able to view the data in bar format.
Conclusion
Data visualization empowers organizations to turn unused data into actionable insights, leading to faster and better decision-making. Why wait?
With our free plan Supabase account, you can start a new project today and use Metabase to visualize your app data.
If you have any questions please reach out via Twitter or join our Discord.