Learn R Programming

loadshaper (version 1.1.1)

summary.lslog: Summary of Logistic Load Shape

Description

Print method for summarizing lslog object

Usage

# S3 method for lslog
summary(object, ... = NULL)

Arguments

object

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

...

NULL. Used for S3 generic/method consistency.

Value

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

See Also

lslog

Examples

Run this code
# NOT RUN {
# ---------------------
loads <- ercot[ercot$Year == 2019, ]$COAST
logistic_loadshape <- lslog(loads, target_lf = 0.5, k = 0.5)
summary(logistic_loadshape)
# ---------------------
loads2 <- ercot[ercot$Year == 2019, ]$ERCOT
logistic_loadshape2 <- lslog(loads2, target_lf = 0.75, k = 1)
summary(logistic_loadshape2)



# }

Run the code above in your browser using DataLab