总是报错看不出来哪里错了,麻烦老师帮我看一下,使用的数据集是R中自带的:代码如下

总是报错看不出来哪里错了,麻烦老师帮我看一下,使用的数据集是R中自带的:

代码如下:

library(survival) library(rms) data(lung,package="survival")  dd<-datadist(lung) options(datadist="dd")

fit1<-glm(status~sex+ph.karno,data=lung) #logistics回归模型 summary(fit1) nomofit1<-nomogram(fit1,lp=FALSE,                    fun=function(x) 1/(1+exp(-x)),                    fun.at=seq(0.1,1,by=0.1),                    funlabel="Diagnostic possibility") plot(nomofit1)

 

总是报错:

Error in lims[[i]] : subscript out of bounds In addition: Warning message: In structure(limits, class = "data.frame", row.names = c("Low:effect",  :   Calling 'structure(NULL, *)' is deprecated, as NULL cannot have attributes.   Consider 'structure(list(), *)' instead.

麻烦老师了!