srmse | R Documentation |
Standardised Root Mean Squared Error
srmse(x, y)
x |
[numeric()][vector()] observed values |
y |
[numeric()][vector()] forecast values |
[numeric()] root mean squared error
x <- rnorm(100, 0, 1)
y1 <- x
srmse(x, y1)
y2 <- rep(mean(x), length(x))
srmse(x, y2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.