我是使用R的新手,我正在尝试使用生存分析来查找删失数据中的相关性。 x数据是原恒星的包络质量。 y数据是观察到的分子线的强度,并且一些值是上限。数据是:
x <- c(17.299, 4.309, 7.368, 29.382, 1.407, 3.404, 0.450, 0.815, 1.027, 0.549, 0.018)
y <- c(2.37, 0.91, 1.70, 1.97, 0.60, 1.45, 0.25, 0.16, 0.36, 0.88, 0.42)
censor <- c(0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1)
我正在使用R Survival库中的survreg函数
modeldata<-survreg(formula=Surv(y,censor)~x, dist="exponential", control = list(maxiter=90))
这给出了以下结果:
summary(modeldata)
Call:
survreg(formula = Surv(y, censor) ~ x, dist = "exponential",
control = list(maxiter = 90))
Value Std. Error z p
(Intercept) -0.114 0.568 -0.20 0.841
x 0.153 0.110 1.39 0.163
Scale fixed at 1
Exponential distribution
Loglik(model)= -6.9 Loglik(intercept only)= -9
Chisq= 4.21 on 1 degrees of freedom, p= 0.04
Number of Newton-Raphson Iterations: 5
n= 11
但是,当我使用以下方法绘制数据和模型时:
plot(x,y,pch=(censor+1))
xnew<-seq(0,30)
model<-predict(modeldata,list(x=xnew))
lines(xnew,model,col="red")
我得到了这个plot of x and y data; triangles are censored data
我不确定我哪里出错了。我尝试了不同的发行版,但都产生了类似的结果。当我使用其他数据时也是如此,例如:
x <- c(1.14, 1.14, 1.19, 0.78, 0.43, 0.24, 0.19, 0.16, 0.17, 0.66, 0.40)
我也不确定我是否正确地解释了结果。
我尝试过使用相同方法的其他示例(例如https://stats.idre.ucla.edu/r/examples/asa/r-applied-survival-analysis-ch-1/),就我所知,它运作良好。
所以我的问题是:
我使用正确的函数来拟合数据吗?如果没有,哪个会更合适?
如果它是正确的功能,为什么模型甚至不能很好地拟合数据?它与绘图有关吗?
感谢您的帮助。
答案 0 :(得分:0)
这种关系的“形状”看起来是凹陷的,所以我猜想~ log(x)
拟合可能更合适:
dfrm <- data.frame( x = c(17.299, 4.309, 7.368, 29.382, 1.407, 3.404, 0.450, 0.815, 1.027, 0.549, 0.018),
y = c(2.37, 0.91, 1.70, 1.97, 0.60, 1.45, 0.25, 0.16, 0.36, 0.88, 0.42),
censor= c(0, 1, 1, 0, 0, 1, 0, 1, 0, 0, 1))
modeldata<-survreg(formula=Surv(y,censor)~log(x), data=dfrm, dist="loggaussian", control = list(maxiter=90))
您的代码似乎合适:
png(); plot(y~x,pch=(censor+1),data=dfrm)
xnew<-seq(0,30)
model<-predict(modeldata,list(x=xnew))
lines(xnew,model,col="red"); dev.off()
modeldata
Call:
survreg(formula = Surv(y, censor) ~ log(x), data = dfrm, dist = "loggaussian",
control = list(maxiter = 90))
Coefficients:
(Intercept) log(x)
0.02092589 0.32536509
Scale= 0.7861798
Loglik(model)= -6.6 Loglik(intercept only)= -8.8
Chisq= 4.31 on 1 degrees of freedom, p= 0.038
n= 11