National Economics University logo Faculty of Data Science and Artificial Intelligence logo BAI Lab logo

Topic 2

Monthly Business Sales Time Series

Easy
Monthly Business Sales Time Series

Topic 2 โ€“ Monthly Business Sales Time Series

Level: Easy Goal: Analyze and forecast monthly / periodic sales or revenue.

Dataset

Download Instructions

  1. Open the link above.
  2. Click "Download CSV" (e.g. Month_Value_1.csv).
  3. Save as data/business_sales.csv.

Data Loading

import pandas as pd
df = pd.read_csv("data/business_sales.csv")
df["Month"] = pd.to_datetime(df["Month"])
df = df.set_index("Month").sort_index()

Implementation Steps

1. Data Exploration

2. Exploratory Data Analysis (EDA)

3. Stationarity Analysis

4. Model Building

5. Model Evaluation

6. Forecasting

Expected Deliverables

  1. EDA Report:
  1. Model Results:
  1. Code:

Tips

Starter Notebook

The starter notebook contains installation instructions and data loading code to help you get started with this topic.

๐Ÿ““ View Starter Notebook on GitHub

Note: You can view the notebook directly on GitHub or download it to run locally in Jupyter.

Getting Started

This topic includes:

Navigate to the Topic/2.Business_Sales/ directory to access all resources.

โ† Back to All Topics