Learn R Programming

loadshaper (version 1.1.1)

print.lscore: Print Summary of Load Shape Score

Description

Print Summary of Load Shape Score

Usage

# S3 method for lscore
print(x, ... = NULL)

Arguments

x

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

...

NULL. Used for S3 generic/method consistency.

Value

NULL. Prints the summary of the load shape score.

See Also

lslin, lscore, lscore

Examples

Run this code
# NOT RUN {
loads <- ercot[ercot$Year == 2019, ]$SOUTH
# --------------
log_loadshape <- lslog(loads, target_lf = 0.5)
print(lscore(log_loadshape, type = "acf"))
print(lscore(log_loadshape, type = "pacf"))
# --------------
lin_loadshape <- lslin(loads, target_lf = 0.5)
print(lscore(lin_loadshape, type = "acf"))
print(lscore(lin_loadshape, type = "pacf"))







# }

Run the code above in your browser using DataLab