print.lscore {loadshaper} | R Documentation |
Print Summary of Load Shape Score
Description
Print Summary of Load Shape Score
Usage
## S3 method for class 'lscore'
print(x, ... = NULL)
Arguments
x |
An object of class |
... |
|
Value
NULL
. Prints the summary of the load shape score.
Note
Same as summary.lscore
See Also
Examples
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"))
[Package loadshaper version 1.1.1 Index]