R/abweich.nair.fun.R

"abweich.nair.fun" <-
function(matrix,c)  
{
    # 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 <- c*sqrt(sigma)*kap.mei
    result2 <- exp((c*sqrt(sigma))/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.