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

SUPER-MARKET DATA ANALYSIS

In this notebook, I will be performing exploratory data analysis on the supermarket dataset

image.png

You can find the dataset here

Author - Akshit Gupta

import numpy as np # linear algebra
import pandas as pd # data processing, CSV file I/O (e.g. pd.read_csv)
import seaborn as sns # used for visualization
import matplotlib.pyplot as plt #used for visualization

import os
for dirname, _, filenames in os.walk('/kaggle/input'):
    for filename in filenames:
        print(os.path.join(dirname, filename))
/kaggle/input/sample-supermarket-dataset/SampleSuperstore.csv
data = pd.read_csv("../input/sample-supermarket-dataset/SampleSuperstore.csv")
data.head(10)