R/abweich.fun.R

"abweich.fun" <-
function(matrix,k,n)  
{
    # Calculates the upper and lower derivation to the Kaplan-Meier estimator
    # for determining the boundaries of a Hall-Wellner band (which is
    # symmetric).
    
    kap.mei <- matrix[,2]
    sigma <- matrix[,3]
    result1 <- k*(1+n*sigma)*kap.mei/sqrt(n)
    result2 <- exp(k*(1+n*sigma)/(sqrt(n)*log(kap.mei)))
    return(list(lin.dev=result1,log.dev=result2))
}

Try the km.ci package in your browser

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

km.ci documentation built on April 6, 2022, 5:06 p.m.