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

Topic 14

Electricity Load Diagrams

Hard +1.5 Bonus Points
Electricity Load Diagrams

Topic 14 โ€“ Electricity Load Diagrams (Energy Consumption, Library Dataset)

Level: Hard Goal: Model and forecast electricity demand (multiple time series, rich seasonality).

Dataset (Example Source)

Download (Simple Manual Approach)

  1. Open the link above.
  2. Download the CSV file containing the load data (if provided).
  3. Save to data/electricity/.

Data Loading (If CSV is Available)

import pandas as pd
df = pd.read_csv("data/electricity/electricity.csv")  # adjust filename
print(df.head())

Example: parse datetime column like "timestamp"

df["timestamp"] = pd.to_datetime(df["timestamp"]) df = df.set_index("timestamp").sort_index()

Implementation Steps

1. Data Loading and Exploration

2. Exploratory Data Analysis (EDA)

3. Data Preprocessing

4. Feature Engineering

5. Model Building

6. Model Evaluation

7. Forecasting

8. Advanced Analysis (Optional)

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/14.Electricity_Load/ directory to access all resources.

โ† Back to All Topics