Title: | The Demand and Supply for Electricity in the US |
---|---|
Description: | Provides a set of regular time-series datasets, describing the US electricity grid. That includes the total demand and supply, and as well as the demand by energy source (coal, solar, wind, etc.). Source: US Energy Information Administration (Mar 2021) <https://www.eia.gov/>. |
Authors: | Rami Krispin [aut, cre] |
Maintainer: | Rami Krispin <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.1.2 |
Built: | 2025-02-14 04:12:16 UTC |
Source: | https://github.com/ramikrispin/usgrid |
The demand for electricity in California subregion since July 2018 by operator.
Units: megawatthours
Time zone: UTC
Cal_elec
Cal_elec
A tsibble object with hourly intervals
The dataset contains the hourly demand for electricity in the California subregion (megawatthours). The 'operator' column describes the name of operator provider
US Energy Information Administration (Mar 2021) website
data(Cal_elec) library(plotly) plot_ly(data = Cal_elec, x = ~ date_time, y = ~ series, color = ~ operator, type = "scatter", mode = "lines")
data(Cal_elec) library(plotly) plot_ly(data = Cal_elec, x = ~ date_time, y = ~ series, color = ~ operator, type = "scatter", mode = "lines")
The total hourly demand and supply (generation) for electricity in the US since July 2015
Units: megawatthours
Time zone: UTC
US_elec
US_elec
A tsibble object with hourly intervals
The dataset contains the hourly demand and supply (generation) for electricity in the US (megawatthours). The 'type' column describes the type of the series (demand or generation)
US Energy Information Administration (Mar 2021) website
data(US_elec) library(plotly) plot_ly(data = US_elec, x = ~ date_time, y = ~ series, color = ~ type, type = "scatter", mode = "lines")
data(US_elec) library(plotly) plot_ly(data = US_elec, x = ~ date_time, y = ~ series, color = ~ type, type = "scatter", mode = "lines")
The net generation of electricity in the US by energy source (i.e., natural gas, coal, solar, etc.) since July 2018.
Units: megawatthours
Time zone: UTC
US_source
US_source
A tsibble object with hourly intervals
The dataset contains the hourly net generation of electricity in the US (megawatthours) by energy source The 'source' column describes the type of the energy source
US Energy Information Administration (Mar 2021) website
data(US_source) library(plotly) plot_ly(data = US_source, x = ~ date_time, y = ~ series, color = ~ source, type = "scatter", mode = "lines")
data(US_source) library(plotly) plot_ly(data = US_source, x = ~ date_time, y = ~ series, color = ~ source, type = "scatter", mode = "lines")