srmse: Standardised Root Mean Squared Error

srmseR Documentation

Standardised Root Mean Squared Error

Description

Standardised Root Mean Squared Error

Usage

srmse(x, y)

Arguments

x

[numeric()][vector()] observed values

y

[numeric()][vector()] forecast values

Value

[numeric()] root mean squared error

Examples

x <- rnorm(100, 0, 1)
y1 <- x
srmse(x, y1)

y2 <- rep(mean(x), length(x))
srmse(x, y2)


luke-a-rogers/pbsedm documentation built on June 3, 2024, 5:20 a.m.