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

Retail Giant Sales Forecasting Assignment

Global Mart is an online supergiant store that has worldwide operations. It takes orders and delivers across the globe and deals with all the major product categories — consumer, corporate & home office.
We have to forecast the sales of the products for the next 6 months, so that we have a proper estimate and can plan our inventory and business processes accordingly.
We will do TIMESERIES FORECASTING for the same.

Initial Setup Import required packages

import pandas as pd 
import numpy as np 
import matplotlib.pyplot as plt
%matplotlib inline

import warnings
warnings.filterwarnings("ignore")

Import time series data: Global Superstore Data

data = pd.read_csv('Global+Superstore+Data.csv')
data.head(12)