简体   繁体   English

事件论点在R?生存函数中的统计意义

[英]Statistical significance of the event argument in Survival function in R?

I have created a Cox Regression model for Survival Analysis on a churn dataset.Now I am confused at two points: 我在流失数据集上创建了用于生存分析的Cox回归模型,现在我在两点感到困惑:

  1. When I write Surv(time,status) as the survival object and commit the cox regression, I get a very bad survival curve which does not reach the survival probability of 0.5 当我将Surv(time,status)写为生存对象并进行cox回归时,我得到了非常糟糕的生存曲线,未达到0.5的生存概率
  2. When I write Surv(time,status==0) as the survival object and commit the cox regression,I get a decent survival curve which reaches the almost 0 probability mark at the end of the time duration of the observation. 当我写Surv(time,status==0)作为生存对象并进行cox回归时,我得到了一条不错的生存曲线,该曲线在观察的持续时间结束时达到了几乎为0概率标记。

The time parameter in my dataset has a peculiar anomaly. 我的数据集中的time参数有一个异常。 Those with status==0 have a very high time value and those with status==1 have a very low time value. status==0那些具有非常高的time值,而status==1那些具有非常低的time值。

The statistical significance is like this : 统计意义如下:

fit1<- Surv(time,event)
df1<-as.data.frame.character(fit1)

gives a result where all the individuals for whom status == 1 are considered censored ie their times will be designated as 2+,3+ etc. and those whose status==0 , their status will be considered dead after their respective time given in the time column, ie their times will be given as 13,10,15 etc. The moot point is those who are alive will be considered dead after their respective times and those who are alive will be considered dead after their respective times. 给出一个结果,其中status == 1所有个人都被视为审查对象,即他们的时间将被指定为2+,3+等。 status==0个人在其给出的时间后将被视为死亡。时间点,即他们的时间将被指定为13,10,15等。讨论的重点是活着的人在各自的时间后被视为死亡,而活着的人在各自的时间后被视为死亡。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM