Daily Electricity Price And Demand Data
Daily price, demand and weather data in Australia's second largest state
@kaggle.aramacus_electricity_demand_in_victoria_australia
Daily price, demand and weather data in Australia's second largest state
@kaggle.aramacus_electricity_demand_in_victoria_australia
As of 2020, 6.7 million people reside in Victoria, Australia's second most populated state. Most of them, 5 million, live or work in Melbourne, state's capital. During 2020 Australia was among the first to close international borders, followed by a closure of interstate borders. Victoria introduced some of the strictest pandemic-related restrictions on business activity that resulted in a significant portion of its population working from home.
The dataset covers 2016 days between 1 January 2015 and 6 October 2020. During some intraday intervals RRP was negative, so that energy producers were paying consumers rather than wise versa. Below is a brief description fo the data:
CREATE TABLE complete_dataset (
"date" TIMESTAMP,
"demand" DOUBLE,
"rrp" DOUBLE,
"demand_pos_rrp" DOUBLE,
"rrp_positive" DOUBLE,
"demand_neg_rrp" DOUBLE,
"rrp_negative" DOUBLE,
"frac_at_neg_rrp" DOUBLE,
"min_temperature" DOUBLE,
"max_temperature" DOUBLE,
"solar_exposure" DOUBLE,
"rainfall" DOUBLE,
"school_day" VARCHAR,
"holiday" VARCHAR
);
Anyone who has the link will be able to view this.