當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。