{ "cells": [ { "cell_type": "markdown", "id": "5a048366-36d9-43fc-b2e7-6d4cf94469bc", "metadata": {}, "source": [ "# Challenge: \"Sales Analysis\"\n", "\n", "### Description:\n", "You are a sales analyst for an e-commerce company. You have been tasked with analyzing the sales data to determine which regions and product categories are generating the most revenue. You have a dataset containing information about sales, including the region, product category, and sales amount.\n", "\n", "### Task:\n", "\n", "Using Pandas, write a program to:\n", "\n", "- Load the dataset into a pandas DataFrame.\n", "- Group the sales data by region and product category, and calculate the total sales amount for each region and product category.\n", "- Calculate the total sales amount for each region and product category as a percentage of the overall sales amount.\n", "- Print the top 3 regions and product categories with their total sales amount and percentage of overall sales.\n", "\n", "**Hint:** You can use the groupby function to group the data by region and product category, and calculate the total sales amount for each group. Then, use the pivot_table function to reshape the data and calculate the percentages." ] }, { "cell_type": "markdown", "id": "d82f6ce6-be1a-4790-b77a-c482eadcf0bf", "metadata": {}, "source": [ "### Here is the dataset\n", "```\n", "Region,Product Category,Sales Amount\n", "North,Electronics,1000\n", "North,Clothing,800\n", "South,Electronics,1200\n", "South,Electronics,900\n", "East,Clothing,1100\n", "East,Electronics,700\n", "West,Electronics,1000\n", "West,Electronics,900\n", "North,Clothing,600\n", "South,Clothing,1000\n", "```" ] }, { "cell_type": "code", "execution_count": 1, "id": "61aabeb9-a126-4894-a46a-657d4ac28858", "metadata": {}, "outputs": [], "source": [ "import pandas as pd\n", "import sys" ] }, { "cell_type": "code", "execution_count": 2, "id": "56b66926-d791-48db-b08c-2a24071fab6a", "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "Python version 3.11.7 | packaged by Anaconda, Inc. | (main, Dec 15 2023, 18:05:47) [MSC v.1916 64 bit (AMD64)]\n", "Pandas version 2.2.1\n" ] } ], "source": [ "print('Python version ' + sys.version)\n", "print('Pandas version ' + pd.__version__)" ] }, { "cell_type": "code", "execution_count": 3, "id": "9dcbb8a6-c632-4692-9ca9-8c60c5ac6588", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
RegionProduct CategorySales Amount
0NorthElectronics1000
1NorthClothing800
2SouthElectronics1200
3SouthElectronics900
4EastClothing1100
5EastElectronics700
6WestElectronics1000
7WestElectronics900
8NorthClothing600
9SouthClothing1000
\n", "
" ], "text/plain": [ " Region Product Category Sales Amount\n", "0 North Electronics 1000\n", "1 North Clothing 800\n", "2 South Electronics 1200\n", "3 South Electronics 900\n", "4 East Clothing 1100\n", "5 East Electronics 700\n", "6 West Electronics 1000\n", "7 West Electronics 900\n", "8 North Clothing 600\n", "9 South Clothing 1000" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "df = pd.read_clipboard(sep=\",\")\n", "df" ] }, { "cell_type": "code", "execution_count": 4, "id": "9cf9dc6f-06b2-477e-a3e4-ffa45ccf0a52", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Sales Amount
RegionProduct Category
EastClothing1100
Electronics700
NorthClothing1400
Electronics1000
SouthClothing1000
Electronics2100
WestElectronics1900
\n", "
" ], "text/plain": [ " Sales Amount\n", "Region Product Category \n", "East Clothing 1100\n", " Electronics 700\n", "North Clothing 1400\n", " Electronics 1000\n", "South Clothing 1000\n", " Electronics 2100\n", "West Electronics 1900" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# group the sales data by region and product category\n", "group = df.groupby(['Region','Product Category'])\n", "\n", "# total sales of group\n", "group.sum()" ] }, { "cell_type": "code", "execution_count": 5, "id": "68884ccd-4afd-4adc-8681-1ff7fec2bb5b", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
RegionProduct CategorySales Amount
0EastClothing1100
1EastElectronics700
2NorthClothing1400
3NorthElectronics1000
4SouthClothing1000
5SouthElectronics2100
6WestElectronics1900
\n", "
" ], "text/plain": [ " Region Product Category Sales Amount\n", "0 East Clothing 1100\n", "1 East Electronics 700\n", "2 North Clothing 1400\n", "3 North Electronics 1000\n", "4 South Clothing 1000\n", "5 South Electronics 2100\n", "6 West Electronics 1900" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# flatten the group\n", "agg = group['Sales Amount'].sum().reset_index()\n", "agg" ] }, { "cell_type": "code", "execution_count": 6, "id": "3040186d-2863-4252-b379-8a892e0d3efa", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
RegionProduct CategorySales AmountPercentage of Total Sales
0EastClothing110011.956522
1EastElectronics7007.608696
2NorthClothing140015.217391
3NorthElectronics100010.869565
4SouthClothing100010.869565
5SouthElectronics210022.826087
6WestElectronics190020.652174
\n", "
" ], "text/plain": [ " Region Product Category Sales Amount Percentage of Total Sales\n", "0 East Clothing 1100 11.956522\n", "1 East Electronics 700 7.608696\n", "2 North Clothing 1400 15.217391\n", "3 North Electronics 1000 10.869565\n", "4 South Clothing 1000 10.869565\n", "5 South Electronics 2100 22.826087\n", "6 West Electronics 1900 20.652174" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# calculate total sales amount\n", "total_sales = agg['Sales Amount'].sum()\n", "\n", "# calculate percentage of total sales for each region and product category\n", "agg['Percentage of Total Sales'] = (agg['Sales Amount'] / total_sales) * 100\n", "agg" ] }, { "cell_type": "code", "execution_count": 7, "id": "e7f8e7c6-21ea-4adf-9911-37a29a10aaf6", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
RegionProduct CategorySales AmountPercentage of Total Sales
5SouthElectronics210022.826087
6WestElectronics190020.652174
2NorthClothing140015.217391
\n", "
" ], "text/plain": [ " Region Product Category Sales Amount Percentage of Total Sales\n", "5 South Electronics 2100 22.826087\n", "6 West Electronics 1900 20.652174\n", "2 North Clothing 1400 15.217391" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# get the top 3 regions\n", "agg.sort_values(by='Percentage of Total Sales', ascending=False).head(3)" ] }, { "cell_type": "markdown", "id": "5fd51f33-04ab-4a47-b86c-ea39bcf21e8c", "metadata": {}, "source": [ "Here is an alternative solution using pivot tables." ] }, { "cell_type": "code", "execution_count": 8, "id": "9b7fee3f-e59d-4b67-9cf3-a6c7785cab99", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Product CategoryClothingElectronics
Region
East1100.0700.0
North1400.01000.0
South1000.02100.0
WestNaN1900.0
\n", "
" ], "text/plain": [ "Product Category Clothing Electronics\n", "Region \n", "East 1100.0 700.0\n", "North 1400.0 1000.0\n", "South 1000.0 2100.0\n", "West NaN 1900.0" ] }, "execution_count": 8, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# pivot the data to get sales amount by region and product category\n", "pivot = pd.pivot_table(df, values='Sales Amount', index='Region', columns='Product Category', aggfunc='sum')\n", "pivot" ] }, { "cell_type": "code", "execution_count": 9, "id": "9206eda3-b6ce-4806-948f-6452eb09e426", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "9200" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# calculate total sales amount\n", "total_sales = df['Sales Amount'].sum()\n", "total_sales" ] }, { "cell_type": "code", "execution_count": 10, "id": "659bf284-fd42-4f3d-9c8b-ffcff752ffb5", "metadata": {}, "outputs": [ { "data": { "text/html": [ "
\n", "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
Product CategoryClothingElectronics
Region
East11.9565227.608696
North15.21739110.869565
South10.86956522.826087
WestNaN20.652174
\n", "
" ], "text/plain": [ "Product Category Clothing Electronics\n", "Region \n", "East 11.956522 7.608696\n", "North 15.217391 10.869565\n", "South 10.869565 22.826087\n", "West NaN 20.652174" ] }, "execution_count": 10, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# calculate percentage of total sales for each region and product category\n", "agg = (pivot / total_sales) * 100\n", "agg" ] }, { "cell_type": "markdown", "id": "6b385366-b19f-478f-905a-52e3bcf94bba", "metadata": {}, "source": [ "With the shape of this DataFrame ordering by percentage of total sales is not really possible." ] }, { "cell_type": "code", "execution_count": 11, "id": "9ce79699-f2eb-4842-9967-98649c3b275b", "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Region Product Category\n", "South Electronics 22.826087\n", "West Electronics 20.652174\n", "North Clothing 15.217391\n", "dtype: float64" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "# the stack function lets us reshape the data so we can sort by the percentages\n", "agg.stack().sort_values(ascending=False).head(3)" ] }, { "cell_type": "markdown", "id": "f1497685-a0a1-4803-944f-78dd66748696", "metadata": {}, "source": [ "

This tutorial was created by HEDARO

" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.7" } }, "nbformat": 4, "nbformat_minor": 5 }