Re: [R] Extended Survival Plot Lines

2012-03-09 Thread Terry Therneau
> ... Is there a way to extend all the lines to make them end at a > certain time point? (i.e outcome.[,1] is a time to event variable and > I would like thesurvival lines on the plot to extend out to say > 5(years) ) No, there is no option in the plot.survival function to do this. No one has

[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