您好,我在用R语言进行列线图分析,在做最后的DCA图时:
f_cph <- cph(Surv(OS,Censor) ~ Age+Blood_Glucose+Gender,
x=T, y=T, surv=T,
data=training_dataset)
代码跑后无错误
dca_training <- dca(f_cph,times=c(365,3365,5365))
这条代码跑后总是报错:Error in findrow(fit, times, extend) :
no points selected for one or more curves, consider using the extend argument
请问是何问题,谢谢。