Learn practical skills, build real-world projects, and advance your career
  • Exploration of Sales Data

In this work, we are using data science tasks to analyze sales data of a shop

Let's begining by importing all necessary libraries
import pandas as pd
import numpy as np
import os
import matplotlib.pyplot as plt
from wordcloud import WordCloud, STOPWORDS
from itertools import combinations
from collections import Counter
import calendar
Read DataFrame
data = pd.read_csv('../input/shopping/data.csv')