The demand for electricity in California subregion since July 2018 by operator.

Units: megawatthours

Time zone: UTC

Cal_elec

Format

A tsibble object with hourly intervals

Source

US Energy Information Administration (Dec 2019) website

Details

The dataset contains the hourly demand for electricity in the California subregion (megawatthours). The `operator` column describes the name of operator provider

Examples

data(Cal_elec) library(plotly)
#> Warning: package ‘plotly’ was built under R version 3.6.2
#> Loading required package: ggplot2
#> #> Attaching package: ‘plotly’
#> The following object is masked from ‘package:ggplot2’: #> #> last_plot
#> The following object is masked from ‘package:stats’: #> #> filter
#> The following object is masked from ‘package:graphics’: #> #> layout
plot_ly(data = Cal_elec, x = ~ date_time, y = ~ series, color = ~ operator, type = "scatter", mode = "lines")