I would like to check hazard proportional assumption in a large coxph. Usually I check it with cox.zph
but with large coxph my p-values are very small whereas the $\log\left(-\log(S(t)\right)$ curves are almost parallel (so the assumption is verified).
I have to validate my model by bootstrap validation (an optimism-corrected estimate of performance). For this purpose, I made a loop with some steps including one that checks the assumption! So I need something like the cox.zph
procedure (I can't check 200*number of covariables plot). I tried this kind of thing :
coxph(Surv(time, state) ~ X1*(log(time)) )
But It doesn't work, the p-values are significant! I heard about Lasso method but I know nothing about this ...
Anyone have an idea ?