找回密码
 注册
查看: 323|回复: 0

R语言 sft包 estimateUCIPor()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-9-30 01:44:17 | 显示全部楼层 |阅读模式
estimateUCIPor(sft)
estimateUCIPor()所属R语言包:sft

                                         UCIP Performance on OR Tasks
                                         UCIP性能或任务

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Estimates the cumulative hazard function of an unlimited capacity, independent, parallel process on an OR task.
估计累积风险函数的无限容量,独立的,平行的进程或任务。


用法----------Usage----------


estimateUCIPor(RT, CR)



参数----------Arguments----------

参数:RT
A list of arrays of response times.  Each list is used to estimate the response time distribution of a separate channel.
列表数组的响应时间。每个列表用于一个单独的信道估计的响应时间分布。


参数:CR
A list of arrays of correct (1) or incorrect (0) indicators corresponding to each element of the list RT.
阵列的正确的(1)或不正确的(0)对应于每个元素的列表RT的指标的列表。


Details

详细信息----------Details----------

This function concerns the processing time of an unlimited capacity, independent, parallel (UCIP) system.  This means that the completion time for each processing channel does not vary based on the presence of other processes.  Thus, the performance on tasks with a single process can be used to estimate performance of the UCIP model with multiple processes occurring.
此功能涉及一个无限容量的,独立的,的平行(UCIP)系统的处理时间。这意味着,对于每个处理信道的完成时间不变化的基础上存在的其他进程。因此,与一个单一的过程的性能的任务可以被用来估计的UCIP模型的性能发生多个进程。

For example, in a two channel UCIP system the probability that no process has finished (OR processing) is the product of the probabilities of that each channel has not finished.  
例如,在两通道UCIP系统中,没有过程已经完成(或处理)的概率是每个信道的概率的,还没有完成的产品。

We are interested in the cumulative hazard function, which is the natural log of the suvivor function (which is 1-CDF).  Because the log of a product is the sum of the logs, this gives us the following equality for the two channel OR process.
我们有兴趣在累积风险函数,这是自然对数的suvivor功能(1-CDF)。的产品是因为log的log的总和,这为我们提供了下列等式的两个通道或处理。

In general, the cumulative hazard function of a UCIP OR process is estimated by the sum of the cumulative hazard functions of each sub-process.
在一般情况下,功能一个UCIP或过程的累积危险估计各子过程的累积危险函数的总和。

The cumulative hazard functions of the sub-processes are estimated using the Nelson-Aalen estimator.  The Nelson-Aalen estimator is a Gaussian martingale with respect to XXX, so the estimate of the UCIP performance is also a Gaussian martingale and the variance of the estimator can be estimated with the sum of variance estimates for each sub-process.
使用的纳尔逊 - 阿伦估计估计的累积风险函数的子流程。纳尔逊 - 阿伦估计是高斯鞅就XXX,所以估计的UCIP性能也一个高斯鞅,可估算的方差估计方差估计值的总和,每个子流程。


值----------Value----------


参数:H
A function of class "stepfun" that returns the Nelson-Aalen estimator of the cumulative hazard function of a UCIP model on a first-terminating (OR) task.
类的“stepfun”返回纳尔逊 - 阿伦的累积风险函数的UCIP模型估计第一终端(OR)任务的一个功能。


参数:Var
A function of class "stepfun" that returns the estimated variance of the Nelson-Aalen estimator of the cumulative reverse hazard function of a UCIP model on a first-terminating (OR) task.
的功能类的“stepfun”第一终端(OR)任务返回的估计方差的纳尔逊 - 阿伦的的累计反向危害功能的UCIP模型估计的。


(作者)----------Author(s)----------



Joe Houpt <jhoupt@indiana.edu>




参考文献----------References----------




参见----------See Also----------

estimateNAH
estimateNAH


实例----------Examples----------


# Channel completion times and accuracy[通道的完成时间和准确度]
rt1 <- rexp(100, rate=.5)
cr1 <- runif(100) < .90
rt2 <- rexp(100, rate=.4)
cr2 <- runif(100) < .95
Hucip = estimateUCIPor(list(rt1, rt2), list(cr1, cr2))


# Plot the estimated UCIP cumulative hazard function[绘制估计UCIP,累积的风险函数]
plot(Hucip$H, do.p=FALSE,
  main="Estimated UCIP Cumulative Hazard Function\n
    X~min(X1,X2)    X1~Exp(.5)    X2~Exp(.4)",
  xlab="X", ylab="H_UCIP(t)")
# Plot 95% Confidence intervals[图95%的置信区间]
times <- seq(0,10, length.out=100)
lines(times, Hucip$H(times) + sqrt(Hucip$Var(times))*qnorm(1-.05/2), lty=2)
lines(times, Hucip$H(times) - sqrt(Hucip$Var(times))*qnorm(1-.05/2), lty=2)
#Plot true UCIP cumulative hazard function[图真实UCIP累积风险函数]
abline(0,.9, col='red')

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-5-21 23:32 , Processed in 0.020251 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表