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

Exploratory Data Analysis On Retail Store in USA

Problem Statement:

As a business manager, try to find out the weak areas where you can
work to make more profit.

● What all business problems you can derive by exploring the data?

Importing Libraries

import pandas as pd
import numpy as np
from matplotlib import pyplot as plt
import seaborn as sns
%matplotlib inline

Importing Dataset

df=pd.read_csv("SampleSuperstore.csv")
df