R Under development (unstable) (2023-08-12 r84939 ucrt) -- "Unsuffered Consequences" Copyright (C) 2023 The R Foundation for Statistical Computing Platform: x86_64-w64-mingw32/x64 R is free software and comes with ABSOLUTELY NO WARRANTY. You are welcome to redistribute it under certain conditions. Type 'license()' or 'licence()' for distribution details. R is a collaborative project with many contributors. Type 'contributors()' for more information and 'citation()' on how to cite R or R packages in publications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. > library(survival) > # > # Check out the Dory&Korn confidence interval option > # > tdata <- data.frame(time= 1:10, + status=c(1,0,1,0,1,0,0,0,1,0)) > > fit1 <- survfit(Surv(time, status) ~1, tdata, conf.lower='modified') > fit2 <- survfit(Surv(time, status) ~1, tdata) > > stdlow <- fit2$std.err * sqrt(c(1, 10/9, 1, 8/7, 1, 6/5, 6/4, 6/3, 1, 2/1)) > lower <- exp(log(fit2$surv) - qnorm(.975)*stdlow) > all.equal(fit1$lower, lower, check.attributes=FALSE) [1] TRUE > > proc.time() user system elapsed 0.84 0.10 0.93