Smart meter energy consumption dataset with hourly electricity usage patterns
This dataset contains hourly energy consumption data from smart meters with seasonal patterns, peak hours, and consumption trends. Perfect for energy demand forecasting, load prediction, and smart grid applications.
Forecasting models including Linear Regression and Random Forest
Multiple detection methods: IQR, Z-score, Isolation Forest, Time Series
Decomposition, autocorrelation, trend detection, and stationarity tests
Get the complete dataset in CSV or JSON format
import pandas as pd
# Load the dataset
df = pd.read_csv('energy_consumption.csv')
# Basic statistics
print(df.describe())
# Peak hour analysis
hourly_avg = df.groupby('hour')['consumption_kwh'].mean()
print(hourly_avg.sort_values(ascending=False).head())