This was the capstone project done at the Data Science Bootcamp @neuefische. This project has been developed in 4 weeks in November 2021 by Aaron Holstein (Git | LinkedIn), Katrin Mulinski (Git | LinkedIn), Laurent Hartmann (Git | LinkedIn) and Ravi Tripathi (Git | LinkedIn).
Imbalance energy is the energy fed into or extracted from the power transmission net by the transmission net operator to avoid grid instability and to keep the balance between demand and supply. Our goal is to forecast this highly volatile price for the next several hours to be able to make purchase and sale decisions to avoid losing money in case additional energy is needed.
- our final notebooks about preprocessing data, eda and the 2 models sarima and prophet are here
- used and created images are here
- slides used in the final presentation
recorded final presentation
After cleaning the data of 1 json and 11 csv files, we aggregated the dataset to an hourly timespan: 2019-01-01 00:00:00 until 2020-09-30 23:00:00
We selected the following features:
- pyenv with Python: 3.9.4
- Pandas
- Matplotlib
- Seaborn
- Plotly
pyenv local 3.9.4
python -m venv .venv
source .venv/bin/activate
pip install --upgrade pip
pip install -r requirements_dev.txt

