新手小白请教各位老师 我的目前R版本4.2.0 在构建多因素回归模型 后期进行列线图的绘制 但多因素Cox构建时总是报错,
cox <- cph(Surv(tcga$Survival months
,tcga$Status) tcga$ICD-O-3
,surv=T,x=T,y=T,data=tcga )
单因素可以运行
cox <- cph(Surv(tcga$Survival months
,tcga$Status) ~ tcga$ICD-O-3
+ tcga$race + tcga$SEER Combined Mets at DX-lung
,surv=T,x=T,y=T,data=tcga)
但是多因素构建总是报错
Error in if (!length(fname) || !any(fname == zname)) { :
missing value where TRUE/FALSE needed
这个是报错内容 不知道怎么弄了
希望各位老师指点一下
非常感谢