Exploring Pizza Sales Trends: A Data Analysis Journey

Payal Sanjay Nagaonkar
3 min readSep 2, 2023

--

Pizza, a beloved dish enjoyed by people worldwide, has a lot more to it than just delicious toppings and cheesy goodness. Have you ever wondered what goes on behind the scenes in the pizza industry? In this article, we dive into a comprehensive analysis of pizza sales data using the powerful combination of PostgreSQL for data manipulation and Tableau for data visualization.

This report presents a comprehensive analysis of pizza sales data using PostgreSQL for data manipulation and Tableau for data visualization. The dataset, “Pizza.csv,” contains essential information about pizzas, orders, and sales. The analysis covers various aspects, including identifying the best and worst selling pizzas, determining total revenue generated, calculating average revenue, and examining sales trends on monthly, quarterly, and weekly bases. The dataset includes fields such as Pizza_id, Pizza_name, Order_id, Order_date, Pizza_size, Quantity, Unit_sold, Total_unit_sold, Order_time, and more.

SQL Queries Unveiling Secrets

Our first step was to harness the power of SQL queries to mine insights from the dataset.

SELECT SUM(total_price) AS Total_Revenue FROM pizza_sales;

SELECT (SUM(total_price) / COUNT(DISTINCT order_id)) AS Avg_order_Value FROM pizza_sales

SELECT SUM(quantity) AS Total_pizza_sold FROM pizza_sales

SELECT COUNT(DISTINCT order_id) AS Total_Orders FROM pizza_sales

SELECT CAST(CAST(SUM(quantity) AS DECIMAL(10,2)) /

CAST(COUNT(DISTINCT order_id) AS DECIMAL(10,2)) AS DECIMAL(10,2))

AS Avg_Pizzas_per_order

FROM pizza_sales

Visualizing Insights with Tableau

SQL queries provided us with a solid foundation, but data visualization took our analysis to the next level. Tableau, a powerful tool for creating interactive and insightful visualizations, was our go-to choice.

Monthly Sales Trends

We visualized monthly sales trends over time using a Line chart. This visualization highlighted any seasonality or patterns in pizza sales, helping us understand when our pizzas were in high demand throughout the year.

Quarterly Sales Analysis

A Bar chart gave us a quarterly breakdown of sales, making it easy to identify which quarters performed exceptionally well and which ones needed improvement.

Home Page

Weekly Sales Overview

The Area chart displayed weekly sales trends, revealing fluctuations within a month. Understanding these weekly patterns is crucial for optimizing inventory and staffing levels.

Pizza Performance Dashboard

Our interactive dashboard included a Doughnut chart showcasing the percentage breakdown of pizza sales. Users could explore individual pizza performance, helping us understand which pizzas were the most popular.

All-Time High and Low Sales

This information is invaluable for historical trend analysis and strategic decision-making.

Best/Worst Selling Pizzas

In conclusion, our journey into the world of pizza sales was both insightful and delicious. Combining SQL analysis with Tableau visualization allowed us to uncover valuable insights, including the best and worst-selling pizzas, total revenue generated, and average revenue per pizza. Understanding these trends is essential for optimizing pricing, marketing strategies, and resource allocation in the pizza business.

Data analysis is a powerful tool that can transform businesses, and pizza is just one example of how data-driven decisions can lead to success. So the next time you savor a slice of pizza, remember that behind every bite is a wealth of data waiting to be explored.

--

--

Payal Sanjay Nagaonkar

A passionate Data Connoisseur🐛🐛 Talks about data and trends involved