Survival Analysis help

Wondering if anyone can help me, I've completed the following parts of a survival analysis question, it's the last part about the survival probability of an individual in group 2 at time 0.4 that I can't grasp.

Here's my code:
#Estimate a proportional hazard Cox model including Treatment as covariate.

CR <- coxph(Surv(Time, Status) ~ factor(Treatment), data = Recovery)
CR

#Estimate the baseline survival probability at time 0.4
S0_NA <- survfit(coxph(Surv(Time, Status) ~ factor(Treatment), data = Recovery), type = "aalen")
S0_04 <- summary(S0_NA, times = 0.4)$surv
S0_04

How do I approach this last part????
#Estimate the survival probability of an individual from treatment group 2.

This topic was automatically closed 42 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.