Top "Survival-analysis" questions

Survival analysis is the statistics of censored time to event data, to which standard regression and classification techniques generally do not apply, due to the uncertain group memberships of the observations.

Survival not recognizing right censored data

I'm trying to run a survival analysis in R using the survival package. I have right-censored data only (time to …

r survival-analysis
Extract survival probabilities in Survfit by groups

I am new to survival analysis and survfit in R. I want to extract survival probabilities for 4 groups (diseases) at …

r survival-analysis
How to predict survival time in Cox's Regression Model in R?

I have a modeled a problem using Cox's regression and now want to predict the estimated survival time for an …

r survival-analysis cox-regression
Survival Analysis for Telecom Churn using R

I am working on Telecom Churn problem and here is my dataset. http://www.sgi.com/tech/mlc/db/churn.…

r sas logistic-regression survival-analysis cox-regression
Legend on survival plot

Hi I am totally new to R. This is my first attempt at it. I am producing a survival plot …

r plot legend survival-analysis
How to compute the mean survival time

I'm using the survival library. After computing the Kaplan-Meier estimator of a survival function: km = survfit(Surv(time, flag) ~ 1) I …

r survival-analysis
Using a survival tree from the 'rpart' package in R to predict new observations

I'm attempting to use the "rpart" package in R to build a survival tree, and I'm hoping to use this …

r tree survival-analysis rpart
Plot Kaplan-Meier for Cox regression

I have a Cox proportional hazards model set up using the following code in R that predicts mortality. Covariates A, …

r plot survival-analysis cox-regression
How to predict survival probabilities in R?

I have data called veteran stored in R. I created a survival model and now wish to predict survival probability …

r probability prediction survival-analysis
How to enter censored data into R's survival model?

I'm attempting to model customer lifetimes on subscriptions. As the data is censored I'll be using R's survival package to …

r survival-analysis