How to extract values from survfit object

JMarcelino picture JMarcelino · Oct 23, 2013 · Viewed 12.4k times · Source

I've created this model:

model <- survfit(Surv(time,status)~c$sex)
model

and the output is:

Call: survfit(formula = Surv(time, status) ~ c$sex)

             records n.max n.start events median 0.95LCL 0.95UCL
c$sex=female      15    15      15      8    720     517      NA
c$sex=male        28    28      28     23    234     145     712    

So, I want to extract the median for males and the same for females, but have no idea how to do it. Here are my attempts to do it:

>model$median
NULL

>summary(model)$table[, "median"]
c$sex=female c$sex=male 
       720.0            234.5 

I want each one of the values alone ("720" and "234.5"), can somebody help me?

Thanks in advance

Answer

Simon O&#39;Hanlon picture Simon O'Hanlon · Oct 23, 2013

You've already got it. All you are seeing printed to screen are the names attributes of the length 2 vector.

fit <- survfit(Surv(time, status) ~ x, data = aml)
summary(fit)$table
#                records n.max n.start events median 0.95LCL 0.95UCL
#x=Maintained         11    11      11      7     31      18      NA
#x=Nonmaintained      12    12      12     11     23       8      NA

#  Access first value like any other vector
summary(fit)$table[,'median'][1]
#x=Maintained 
#          31

To print without names use unname()...

unname(summary(fit)$table[,'median'])
# [1] 31 23

But you do not need to unname() them to use them as a numeric value, that is just an aesthetic desire...

sum( summary(fit)$table[,'median'] )
[1] 54

For further proof (!) that it is a vector use str()...

str(summary(fit)$table[,'median'])
# Named num [1:2] 31 23
# - attr(*, "names")= chr [1:2] "x=Maintained" "x=Nonmaintained"