Lets say I have the following data frame
library(survival)
library(multcomp)
data(cml)
cml$group<-sample(1:5, 507, replace=T)
plot(survfit(Surv(time=cml$time, cml$status)~cml$group))
(survdiff(Surv(time=cml$time, cml$status)~cml$group))
How can I perform multiple comparison test comparing for example group0 vs. all other groups? Or every group with each other?
Is there a nice way of plotting these multiple comparisons (as for example in plot.TukeyHSD() in aov()?