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


R predict.survreg “survreg”对象的预测值


R语言 predict.survreg 位于 survival 包(package)。

说明

survreg 对象的预测值

用法

## S3 method for class 'survreg'
predict(object, newdata,  
type=c("response", "link", "lp", "linear", "terms", "quantile",  
	"uquantile"),
 se.fit=FALSE, terms=NULL, p=c(0.1, 0.9), na.action=na.pass, ...)

参数

object

使用 survreg 函数进行模型拟合的结果。

newdata

用于预测的数据。如果缺少预测,则针对原始拟合中使用的受试者。

type

预测值的类型。这可以是数据(响应)的原始规模、线性预测器( "linear" ,其中 "lp" 作为允许的缩写)、数据原始规模的预测分位数 ( "quantile" )、分位数在线性预测变量尺度 ( "uquantile" ) 上,或线性预测变量的项矩阵 ( "terms" ) 上。此时"link"和线性预测器("lp")是相同的。

se.fit

如果 TRUE ,则在结果中包含预测的标准误差。

terms

术语的子集。残差类型 "terms" 的默认值是一个矩阵,模型中的每个项(不包括截距)有一列。

p

百分位数向量。这仅用于分位数预测。

na.action

仅当存在 newdata 参数时适用,并定义新数据的缺失值操作。默认情况下包括所有观察结果。

...

对于未来的方法

预测值的向量或矩阵。

例子

# Draw figure 1 from Escobar and Meeker, 1992.
fit <- survreg(Surv(time,status) ~ age + I(age^2), data=stanford2, 
	dist='lognormal') 
with(stanford2, plot(age, time, xlab='Age', ylab='Days', 
	xlim=c(0,65), ylim=c(.1, 10^5), log='y', type='n'))
with(stanford2, points(age, time, pch=c(2,4)[status+1], cex=.7))
pred <- predict(fit, newdata=list(age=1:65), type='quantile', 
	         p=c(.1, .5, .9)) 
matlines(1:65, pred, lty=c(2,1,2), col=1) 

# Predicted Weibull survival curve for a lung cancer subject with
#  ECOG score of 2
lfit <- survreg(Surv(time, status) ~ ph.ecog, data=lung)
pct <- 1:98/100   # The 100th percentile of predicted survival is at +infinity
ptime <- predict(lfit, newdata=data.frame(ph.ecog=2), type='quantile',
                 p=pct, se=TRUE)
matplot(cbind(ptime$fit, ptime$fit + 2*ptime$se.fit,
                         ptime$fit - 2*ptime$se.fit)/30.5, 1-pct,
        xlab="Months", ylab="Survival", type='l', lty=c(1,2,2), col=1)

参考

Escobar and Meeker (1992). Assessing influence in regression analysis with censored data. Biometrics, 48, 507-528.

也可以看看

survregresiduals.survreg

相关用法


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