R/agree.sddm.R

Defines functions agree.sddm

Documented in agree.sddm

#---------------------------------------------------------------------------
agree.sddm <- function(ratings, conf.level=0.95, method=c("vst", "delta"), NAaction=c("fail", "omit")){

    wscv <- agree.wscv(ratings, conf.level, method, NAaction)
    adj <- sqrt(2)*qnorm((1+conf.level)/2)

    list(value=wscv$value*adj, lbound=wscv$lbound*adj, ubound=wscv$ubound*adj)

    
}

Try the agRee package in your browser

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

agRee documentation built on April 14, 2020, 6:35 p.m.