Skip to main content

You Hungry? Use this dashboard to find restaurants in India.



Dataset: Zomato Kaggle Dataset

The dashboard acts as a tool to search for restaurants in the major cities of India. 

Go ahead and select the city from the slicer and find out what is the average cost to have food in your city is. Do you want food to be delivered, click on deliveries and find out which restaurants deliver nearby?

The dashboard was created using Microsofts Power BI.


Comments

Popular posts from this blog

Sberbank Realty Price prediction Kaggle Challenge

Sberbank Challenge GitHub Code

Aggregation using SQL (Game Consoles dataset)

Let's analyze the sales of Console Games. We are tasked to extract insights from the company. The dataset we will be using is the Console Games Dataset . I have imported the data into my MS SQL Server (Transact SQL). Table Design: Challenge #1: What are the total sales of video games in North America, Europe, and Japan. SELECT SUM(na_sales) AS TOTAL_NA_SALES, SUM(eu_sales) AS TOTAL_EU_SALES, SUM(jp_sales) AS TOTAL_JP_SALES FROM [dbo].[console_games]; Result:  In North America, the total sales were 4310.5M copies, in Europe, it was 2382.36M and in Japan it was 1266.38M. So what if I had to get the total sales in the world. The easier method would be to create a column to have total sales. Challenge #2: Create a new column to get the total sales. ALTER TABLE [dbo].[console_games] ADD global_sales float; UPDATE [dbo].[console_games] SET global_sales = na_sales + eu_sales + jp_sales + other_sales; Result: I have a new column with the glob...