On Sun, 25 Jul 2004, Min-Han Tan wrote:

> Hi,
>
> Sorry to trouble the list - I would like to ask a question - I can't
> find the answer in the r-help archives.
>
> I am trying to plot 2 survival curves in different colors.
>
> What I have tried is this
> plot(survfit(sim.surv ~ sim.km.smpl),col="red")
>
> but both the survival curves turn red...

Well, you did ask for them to be red :^)

The solution is to supply a vector of colors. For example

library(survival)
data(ovarian)
plot(survfit(Surv(futime,fustat)~rx, data=ovarian),
col=c("goldenrod","forestgreen"))


        -thomas

______________________________________________
[EMAIL PROTECTED] mailing list
https://www.stat.math.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html

Reply via email to