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 |
使用 |
newdata |
用於預測的數據。如果缺少預測,則針對原始擬合中使用的受試者。 |
type |
預測值的類型。這可以是數據(響應)的原始規模、線性預測器( |
se.fit |
如果 |
terms |
術語的子集。殘差類型 |
p |
百分位數向量。這僅用於分位數預測。 |
na.action |
僅當存在 |
... |
對於未來的方法 |
值
預測值的向量或矩陣。
例子
# 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.
也可以看看
相關用法
- R predict.coxph Cox 模型的預測
- R print.aareg 打印 aareg 對象
- R print.survfit 打印生存曲線的簡短摘要
- R print.summary.survfit 打印生存總結
- R print.summary.survexp 打印 Survexp 摘要
- R print.summary.coxph Summary.coxph 對象的打印方法
- R pseudo 生存的偽值。
- R pbc 梅奧診所原發性膽汁性膽管炎數據
- R plot.survfit survfit 對象的繪圖方法
- R pyears 人年
- R plot.aareg 繪製 aareg 對象。
- R plot.cox.zph 比例風險的圖形測試
- R pbcseq 梅奧診所原發性膽汁性肝硬化,序貫數據
- R pspline 使用 pspline 基礎平滑樣條線
- R hoel 小鼠癌症數據
- R survcondense 縮短 (time1, time2) 生存數據集
- R myeloid 急性粒細胞白血病
- R tobin 托賓的托比特數據
- R levels.Surv 返回多狀態 Surv 對象的狀態
- R rats Mantel 等人的大鼠治療數據
- R diabetic 糖尿病視網膜病變
- R kidney 腎導管數據
- R stanford2 更多斯坦福心髒移植數據
- R residuals.survreg 計算“survreg”對象的殘差
- R cgd0 慢性肉芽腫病數據
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Predicted Values for a ‘survreg’ Object。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。