mase | R Documentation |
Mean Absolute Lag-1-Scaled Error
mase(x, y)
x |
[numeric()][vector()] observed values |
y |
[numeric()][vector()] forecast values |
[numeric()] scalar
x <- rnorm(100, 0, 1)
y1 <- x
mase(x, y1)
y2 <- dplyr::lag(x)
mase(x, y2)
mase(c(x, NA), c(y1, NA))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.