Electricity Load Forecasting
Short-term electricity load forecasting (Panama case study)
@kaggle.saurabhshahane_electricity_load_forecasting
Short-term electricity load forecasting (Panama case study)
@kaggle.saurabhshahane_electricity_load_forecasting
This is a useful dataset to train and test Machine Learning forecasting algorithms and compare results with the official forecast from weekly pre-dispatch reports. The following considerations should be kept to compare forecasting results with the weekly pre-dispatch forecast:
Data sources provide hourly records. The data composition is the following:
The original data sources provide the post-dispatch electricity load in individual Excel files on a daily basis and weekly pre-dispatch electricity load forecast data in individual Excel files on a weekly basis, both with hourly granularity. Holidays and school periods data is sparse, along with websites and PDF files. Weather data is available on daily NetCDF files.
For simplicity, the published datasets are already pre-processed by merging all data sources on the date-time index:
Aguilar Madrid, Ernesto (2021), “Short-term electricity load forecasting (Panama case study)”, Mendeley Data, V1, doi: 10.17632/byx7sztj59.1
CREATE TABLE continuous_dataset (
"datetime" TIMESTAMP,
"nat_demand" DOUBLE,
"t2m_toc" DOUBLE,
"qv2m_toc" DOUBLE,
"tql_toc" DOUBLE,
"w2m_toc" DOUBLE,
"t2m_san" DOUBLE,
"qv2m_san" DOUBLE,
"tql_san" DOUBLE,
"w2m_san" DOUBLE,
"t2m_dav" DOUBLE,
"qv2m_dav" DOUBLE,
"tql_dav" DOUBLE,
"w2m_dav" DOUBLE,
"holiday_id" BIGINT,
"holiday" BIGINT,
"school" BIGINT
);CREATE TABLE weekly_pre_dispatch_forecast (
"datetime" TIMESTAMP,
"load_forecast" DOUBLE
);Anyone who has the link will be able to view this.