1) Installing dependencies

2) Importing Dependencies

3) Loading Dataset

4) Data Analysis

Finding the types of data in the csv file

Finding the Value count for feature "Store/Product"

Observations:

1) There are 3 features in the given data namely "Date", "Store/Product" and "Value".
2) There are 3240 data points in the data set.
3) The date has been provided in the form of integers but it needs to be changed into datetime format as required by prophet.
4) The Store/Product is a categorical feature which has categories namely: SAN_FRANCISCO-TESLA_MODEL_S
LOS_ANGELES-TESLA_MODEL_X
LOS_ANGELES-TESLA_MODEL_S.
5) There are no duplicate and null values in the dataset which means it is a curated toy dataset.

5) Processing Data as per Prophet Requirements

Creating Data Frame For Each Model and Store

Removing the Store/Product column and making the columns as ds and y

6) Creating Time Series Model

Fitting the model for Each Model and store

7) Evaluating the trained models

EVALUTAION FOR : LOS_ANGELES-TESLA_MODEL_X

yhat is very important column as it represents the forecast

Evaluating For : LOS_ANGELES-TESLA_MODEL_S

Evaluating For: SAN_FRANSISCO-TESLA_MODEL_S