Displaying 1 result from an estimated 1 matches for "awdncw0kdqo".
2008 Oct 20
1
Wrong behavior of lines.survfit for conf.int="only" (PR#13180)
I downloaded the source for survival and I think I found the bug. I have not tried to build the package with this change to test it, but just defining the function with this change seems to work.
The code
if (conf.int=='only') {
conf.int <- TRUE
plot.surv<- TRUE
}
Should be
if (conf.int=='only') {
conf.int <- TRUE
plot.surv<- FALSE
}