作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下 survreg 模型:
Call:
survreg(formula = Surv(time = (ev.time), event = ev) ~ age,
data = my.data, dist = "weib")
Value Std. Error z p
(Intercept) 4.0961 0.5566 7.36 1.86e-13
age 0.0388 0.0133 2.91 3.60e-03
Log(scale) 0.1421 0.1208 1.18 2.39e-01
Scale= 1.15
Weibull distribution
predict()
或
pweibull()
(如此处
Parametric Survival 或此处
SO question 所示。
curve()
功能。我有什么想法可以做到这一点吗? survreg 的 Weibull 函数似乎使用了不同于通常的尺度和形状定义(与 rweibull 不同)。
Intercept
,
age (+ other potential covariates)
,
Scale
不使用任何现成的
*weilbull
功能。
最佳答案
你的参数是:scale=exp(Intercept+beta*x)
在你的例子中,让我们说年龄 = 40
scale=283.7
shape=1/1.15
curve((shape/scale)*(x/scale)^(shape-1), from=0,to=12,ylab=expression(hat(h)(t)), col="darkblue",xlab="t", lwd=5)
curve((x/scale)^(shape), from=0,to=12,ylab=expression(hat(F)(t)), col="darkgreen",xlab="t", lwd=5)
curve(1-((x/scale)^(shape)), from=0,to=12,ylab=expression(hat(S)(t)), col="darkred",xlab="t", lwd=5, ylim=c(0,1))
eha
包和函数
hweibull
和
Hweibull
关于r - 使用 curve() 绘制 survreg 的生存和风险函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16236939/
我每天都进行回归分析。就我而言,这通常意味着估计连续和分类预测变量对各种结果的影响。生存分析可能是我执行的最常见的分析。此类分析通常以非常方便的方式出现在期刊中。下面是一个例子: 我想知道是否有人遇到
我是一名优秀的程序员,十分优秀!