Nothing
"kapmeier" <-
function (time, status)
{
stime <- sort(time)
status <- status[order(time)]
nj <- length(time):1
nj <- nj[!duplicated(stime)]
dj <- tapply(status, stime, sum)
tj <- unique(stime)
sj <- (nj - dj)/nj
cumsj <- cumprod(sj)
cumrj <- 1 - cumsj
results <- cbind(time = tj, n.risk = nj, n.events = dj, condsurv = sj,
survival = cumsj, risk = cumrj)
dimnames(results)[1] <- list(NULL)
results[dj != 0, ]
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.