Learn R Programming

USgrid (version 0.1.2)

Cal_elec: Demand for California Independent System Operator (CISO)

Description

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

Units: megawatthours

Time zone: UTC

Usage

Cal_elec

Arguments

Format

A tsibble object with hourly intervals

Details

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

Examples

Run this code
# NOT RUN {
data(Cal_elec)

library(plotly)

plot_ly(data = Cal_elec,
        x = ~ date_time,
        y = ~ series,
        color = ~ operator,
        type = "scatter",
        mode = "lines")

# }

Run the code above in your browser using DataLab