(This article was first published on compBiomeBlog, and kindly contributed to R-bloggers)
A colleague wanted to extract the median value from a survival analysis object, which turned out to be a pain as the value is not stored in the object, but calculated on the fly by a print method.> library(survival)But how do you get the median value? Some googling came up with this link. The answer is rather clunky:
> fit <- coxph(Surv(time, status) ~ x, data=aml)
> survfit(fit)
Call: survfit(formula = fit)
records n.max n.start events median 0.95LCL 0.95UCL
23 23 23 18 30 18 45
> x <- read.table(textConnection(capture.output(survfit(fit))),skip=2,header=TRUE)
> x$median
[1] 30
To leave a comment for the author, please follow the link and comment on his blog: compBiomeBlog.
R-bloggers.com offers daily e-mail updates about R news and tutorials on topics such as: visualization (ggplot2, Boxplots, maps, animation), programming (RStudio, Sweave, LaTeX, SQL, Eclipse, git, hadoop, Web Scraping) statistics (regression, PCA, time series,ecdf, trading) and more...

Zero Inflated Models and Generalized Linear Mixed Models with R.
Zuur, Saveliev, Ieno (2012).