Hourly Energy Consumption
Over 10 years of hourly energy consumption data from PJM in Megawatts
@kaggle.robikscube_hourly_energy_consumption
Over 10 years of hourly energy consumption data from PJM in Megawatts
@kaggle.robikscube_hourly_energy_consumption
PJM Interconnection LLC (PJM) is a regional transmission organization (RTO) in the United States. It is part of the Eastern Interconnection grid operating an electric transmission system serving all or parts of Delaware, Illinois, Indiana, Kentucky, Maryland, Michigan, New Jersey, North Carolina, Ohio, Pennsylvania, Tennessee, Virginia, West Virginia, and the District of Columbia.
The hourly power consumption data comes from PJM's website and are in megawatts (MW).
The regions have changed over the years so data may only appear for certain dates per region.
CREATE TABLE aep_hourly (
"datetime" TIMESTAMP,
"aep_mw" DOUBLE
);CREATE TABLE comed_hourly (
"datetime" TIMESTAMP,
"comed_mw" DOUBLE
);CREATE TABLE dayton_hourly (
"datetime" TIMESTAMP,
"dayton_mw" DOUBLE
);CREATE TABLE deok_hourly (
"datetime" TIMESTAMP,
"deok_mw" DOUBLE
);CREATE TABLE dom_hourly (
"datetime" TIMESTAMP,
"dom_mw" DOUBLE
);CREATE TABLE duq_hourly (
"datetime" TIMESTAMP,
"duq_mw" DOUBLE
);CREATE TABLE ekpc_hourly (
"datetime" TIMESTAMP,
"ekpc_mw" DOUBLE
);CREATE TABLE fe_hourly (
"datetime" TIMESTAMP,
"fe_mw" DOUBLE
);CREATE TABLE ni_hourly (
"datetime" TIMESTAMP,
"ni_mw" DOUBLE
);CREATE TABLE pjme_hourly (
"datetime" TIMESTAMP,
"pjme_mw" DOUBLE
);CREATE TABLE pjm_hourly_est (
"datetime" TIMESTAMP,
"aep" DOUBLE,
"comed" DOUBLE,
"dayton" DOUBLE,
"deok" DOUBLE,
"dom" DOUBLE,
"duq" DOUBLE,
"ekpc" DOUBLE,
"fe" DOUBLE,
"ni" DOUBLE,
"pjme" DOUBLE,
"pjmw" DOUBLE,
"pjm_load" DOUBLE
);CREATE TABLE pjm_load_hourly (
"datetime" TIMESTAMP,
"pjm_load_mw" DOUBLE
);CREATE TABLE pjmw_hourly (
"datetime" TIMESTAMP,
"pjmw_mw" DOUBLE
);Anyone who has the link will be able to view this.