Power Consumption Prediction: Analyzing Trends for Sustainable Solutions
jadavvineet73
70 views
17 slides
Jul 25, 2024
Slide 1 of 17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
About This Presentation
Power Consumption Prediction" explores data analysis techniques to forecast energy usage patterns. This presentation focuses on methodologies like time series analysis, machine learning models, and data visualization to predict future power demands accurately. Tailored for a data analysis cours...
Power Consumption Prediction" explores data analysis techniques to forecast energy usage patterns. This presentation focuses on methodologies like time series analysis, machine learning models, and data visualization to predict future power demands accurately. Tailored for a data analysis course or project presentation, this topic illustrates how insights gained can inform sustainable energy planning, optimize resource allocation, and enhance operational efficiency in diverse sectors.https://bostoninstituteofanalytics.org/data-science-and-artificial-intelligence/
Size: 1.36 MB
Language: en
Added: Jul 25, 2024
Slides: 17 pages
Slide Content
Power Consumption Prediction
Title Slide Title : Predicting Power Consumption in Zone 3 Subtitle : A Machine Learning Approach Presenter : B.Aaswin Robert Date : 20-07-2024
Agenda Objective : Develop a machine learning model to accurately predict power consumption in Zone 3. Goals : Improved forecasting for optimized resource allocation. Cost savings by anticipating peak demand periods. Promoting energy efficiency and integrating renewable energy sources.
Dataset Description : Overview of the power consumption dataset . Columns : Datetime Temperature Humidity WindSpeed GeneralDiffuseFlows DiffuseFlows PowerConsumption_Zone1 PowerConsumption_Zone2 PowerConsumption_Zone3. Size : 52416 records .
Exploratory Data Analysis (EDA) Visualizations : Pairplot to visualize relationships between variables . Correlation matrix to identify significant relationships. Insights : Key features correlated with power consumption . Interaction effects between temperature and humidity.
Sample EDA Output
Data Preprocessing Steps : Handle infinite values and convert to NaN . Exclude non-numeric columns . Fill missing values with mean. Feature Engineering : Created new feature : temperature_humidity_interaction
Correlation Matrix
Feature Selection Selected Features : Temperature Humidity Temp-Humidity Interaction Target Variable : PowerConsumption_Zone3
Data Splitting and Scaling Train-Test Split : 80% Training data 20% Testing data Standardization : Used StandardScaler to scale features.
Model Comparison and Evaluation Models Compared : Linear Regression Random Forest Gradient Boosting Evaluation Metrics : Mean Squared Error (MSE ) R^2 Score
Model Evaluation Results Linear Regression MSE: 32942393.15 R^2 Score: 0.2445 Random Forest MSE: 28895145.97 R^2 Score: 0.3373 Gradient Boosting MSE: 27435253.91 R^2 Score: 0.3708 Best Model Selection Chosen Model: Gradient Boosting Regressor
Actual vs Predicted
Predictions Sample Data : Temperature: 25 Humidity: 60 Temp-Humidity Interaction: 1500 Predicted Power Consumption : 21128.08 kWh
Conclusion Summary : Successfully developed a model to predict power consumption in Zone 3 . Optimized model ( Gradient Boosting Regressor . ) showed high accuracy and reliability. Future Work : Incorporate additional features for improved accuracy . Implement real-time prediction system.