Electricity Demand Historical Data
Analyse the Data, Build XGBoost Prediction Model to Forecast Electricity Demand
@kaggle.rohitgrewal_electricity_demand_data_dsl
Analyse the Data, Build XGBoost Prediction Model to Forecast Electricity Demand
@kaggle.rohitgrewal_electricity_demand_data_dsl
Project Video available on YouTube - https://youtu.be/iop8TUxmgO0
This dataset contains historical information of 5 years to help predict electricity demand using machine learning, especially with models like XGBoost. It includes features such as temperature, humidity, wind speed, and past electricity usage across different time intervals.
The dataset is designed to help you learn and build models that can forecast how much electricity people might use in the future. This is useful for energy companies, smart grids, and power management systems.
The Features/Columns available in the dataset are :
Potential Use Cases :
-Build regression models to forecast electricity demand
-Use lag and rolling features in time series models
-Compare performance of ML algorithms like XGBoost, Random Forest, and LSTM
-Learn how environmental and time-based factors affect electricity usage
CREATE TABLE python_machine_learning_model_xgboost_electricity_demand (
"timestamp" VARCHAR,
"hour" DOUBLE,
"dayofweek" DOUBLE,
"month" DOUBLE,
"year" DOUBLE,
"dayofyear" DOUBLE,
"temperature" DOUBLE,
"humidity" DOUBLE,
"demand" DOUBLE
);
Anyone who has the link will be able to view this.