censor.time(survcomp)
censor.time()所属R语言包:survcomp
Function to artificially censor survival data
功能,以人为生存资料进行审查
译者:生物统计家园网 机器人LoveR
描述----------Description----------
The function censors the survival data at a specific point in time. This is is useful if you used datasets having different follow-up periods.
生存在一个特定的时间点数据的功能检查员。这是非常有用的,如果你使用的数据集,具有不同的后续期。
用法----------Usage----------
censor.time(surv.time, surv.event, time.cens = 0)
参数----------Arguments----------
参数:surv.time
vector of times to event occurrence
次事件发生的矢量
参数:surv.event
vector of indicators for event occurrence
事件发生的指标向量
参数:time.cens
point in time at which the survival data must be censored
必须设限生存数据的时间点
值----------Value----------
参数:surv.time.cens
vector of censored times to event occurrence
审查时间事件发生的向量
参数:surv.event.cens
vector of censored indicators for event occurrence
事件发生的审查指标向量
作者(S)----------Author(s)----------
Benjamin Haibe-Kains
举例----------Examples----------
set.seed(12345)
stime <- rexp(30)
cens <- runif(30,0.5,2)
sevent <- as.numeric(stime <= cens)
stime <- pmin(stime, cens)
censor.time(surv.time=stime, surv.event=sevent, time.cens=1)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|