summary.lslin {loadshaper}R Documentation

Summary of Linear Load Shape

Description

Summary method of lslin object

Usage

## S3 method for class 'lslin'
summary(object, ... = NULL)

Arguments

object

An object of class lslin, created by the function lslin.

...

NULL. Used for S3 generic/method consistency.

Value

NULL. Prints the summary of the derived load shape using linear method.

Note

Same as print.lslin

See Also

lslin

Examples

# ---------------------
loads <- ercot[ercot$Year == 2019, ]$COAST
linear_loadshape <- lslog(loads, target_lf = 0.5, k = 0.5)
summary(linear_loadshape)
# ---------------------
loads2 <- ercot[ercot$Year == 2019, ]$ERCOT
linear_loadshape2 <- lslog(loads2, target_lf = 0.75, k = 1)
summary(linear_loadshape2)




[Package loadshaper version 1.1.1 Index]