当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R survregDtest 验证 survreg 分布


R语言 survregDtest 位于 survival 包(package)。

说明

survreg 调用此例程来验证分发对象是否有效。

用法

survregDtest(dlist, verbose = F)

参数

dlist

说明生存分布的列表

verbose

从有效性测试中返回简单的 TRUE/FALSE(默认),或任何缺陷的详细说明。

细节

如果 survreg 函数将您的用户提供的分发视为无效而拒绝,此例程将告诉您为什么这样做。

如果分布对象通过测试,则为 TRUE;如果未通过测试,则为 FALSE 或字符串向量。

例子

# An invalid distribution (it should have "init =" on line 2)
#  surveg would give an error message
mycauchy <- list(name='Cauchy',
                 init<- function(x, weights, ...) 
                      c(median(x), mad(x)),
                 density= function(x, parms) {
                      temp <- 1/(1 + x^2)
                      cbind(.5 + atan(temp)/pi, .5+ atan(-temp)/pi,
                            temp/pi, -2 *x*temp, 2*temp^2*(4*x^2*temp -1))
                      },
                 quantile= function(p, parms) tan((p-.5)*pi),
                 deviance= function(...) stop('deviance residuals not defined')
                 )

survregDtest(mycauchy, TRUE)

作者

Terry Therneau

也可以看看

survreg.distributions , survreg

相关用法


注:本文由纯净天空筛选整理自R-devel大神的英文原创作品 Verify a survreg distribution。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。