print.lscore | R Documentation |
Print Summary of Load Shape Score
## S3 method for class 'lscore' print(x, ... = NULL)
x |
An object of class |
... |
|
NULL
. Prints the summary of the load shape score.
Same as summary.lscore
lslin
, lscore
,
lscore
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"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.