dindex.comp(survcomp)
dindex.comp()所属R语言包:survcomp
Function to compare two D indices
函数来比较两个D指数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function compares two D indices from their betas and standard errors as computed by a Cox model for instance. The statistical test is a Student t test for dependent samples. The two D indices must be computed using the D.index function from the same survival data.
这个函数比较两个D指数从他们的贝塔值和标准误差Cox模型的一个实例计算。统计检验是相依样本t检验。两个D的指数必须使用相同的生存数据D.index函数的计算。
用法----------Usage----------
dindex.comp(dindex1, dindex2)
参数----------Arguments----------
参数:dindex1
first D index
第一个D指数
参数:dindex2
second D index
第二个D指数
Details
详情----------Details----------
The two D indices must be computed using the D.index function from the same samples (and corresponding survival data). The function uses a Student t test for dependent samples.
两个D的指数必须使用同一样品(以及相应的生存数据)D.index函数的计算。该功能使用相依样本t检验。
值----------Value----------
参数:p.value
p-value from the Wilcoxon rank sum test for the comparison dindex1 > dindex2
p值Wilcoxon秩和检验比较dindex1> dindex2
参数:dindex1
value of the first D index
第一个D指数值
参数:dindex2
value of the second D index
第二个D指数值
作者(S)----------Author(s)----------
Benjamin Haibe-Kains
参考文献----------References----------
<h3>See Also</h3>
举例----------Examples----------
set.seed(12345)
age <- rnorm(100, 50, 10)
size <- rexp(100,1)
stime <- rexp(100)
cens <- runif(100,.5,2)
sevent <- as.numeric(stime <= cens)
stime <- pmin(stime, cens)
d1 <- D.index(x=age, surv.time=stime, surv.event=sevent)
d2 <- D.index(x=size, surv.time=stime, surv.event=sevent)
dindex.comp(d1, d2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|