Learn practical skills, build real-world projects, and advance your career

Superstore Data Analysis

Objective

Upon initial inspection of the data, we can start thinking of some questions about it that we would want to answer.

  • What is the overall sales trend?
  • What are the top 10 products by sales?
  • What are the most selling products?
  • Which is the most preferred ship mode?
  • Which are the most profitable category and sub-category?
!pip install jovian --upgrade --quiet

Importing related Libaries

# Data manipulation 
import pandas as pd

# Data Visualization
import matplotlib.pyplot as plt
%matplotlib inline

import seaborn as sns