US_source {USgrid} | R Documentation |
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
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 (Dec 2019) website
data(US_source)
library(plotly)
plot_ly(data = US_source,
x = ~ date_time,
y = ~ series,
color = ~ source,
type = "scatter",
mode = "lines")