[R] Removing Values from Summary after Survival Curve

2012-03-09 Thread mtkent189
Hi All, s = Surv(outcome.[,1], outcome.[,2]) survplot= (survfit(s ~ person.list[,1])) summary(survplot) This prints a summary of all the curves at specified time intervals of events. Is there a way to suppress this summary to only display a su

[R] Extended Survival Plot Lines

2012-03-08 Thread mtkent189
I've obtained a survival plot from the following code: s = Surv(outcome.[,1], outcome.[,2]) survplot= (survfit(s ~ person.list[,1])) plot(survplot, mark.time = FALSE) person.list is just a list of 15 people. When I plot this, the lines on my plot all end at different time points. Is