R/nse.R

Defines functions nse

Documented in nse

nse <- function(x, y)
{
    ref_meth <- mean(y)

    1 - mse(x = x, y = y)/mse(x = ref_meth, y = y)
}

Try the scoringfunctions package in your browser

Any scripts or data that you put into this service are public.

scoringfunctions documentation built on April 4, 2025, 12:28 a.m.