I'm working with the rms package to derive a score for predicting response to a drug. I actually derived two scores: one including only pre-treatment variables (x and y), and a second including also variable that can be measured only after 6 months of therapy (z).
So the models are:
score_baseline <– cph(Surv(t, response)~ x + y, data = df)
score_6months <– cph(Surv(t, response)~ x + y + z, data = df)
By doing that, the two scores have different scales of the linear predictor and different baseline survival values (S0(t)). Is there a way to rescale the coefficients of one of the two models (e.g. score_6months) and have the two linear predictors on the same scale and also same baseline survival estimates?
Thanks for help.