R/interval_sf.R

Defines functions interval_sf

Documented in interval_sf

interval_sf <- function(x1, x2, y, p)
{
    err1 <- x1 - y
    err2 <- x2 - y
    p1 <- p/2
    p2 <- 1 - (p/2)

    (2/p) * (((p1) * pmax(-err1, 0) + (p2) * pmax(err1, 0)) +
        ((p2) * pmax(-err2, 0) + (p1) * pmax(err2, 0)))
}

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.