I am developing a COX regression model in R.
The model I am currently using is as follows
fh <- cph(S ~ rcs(MPV,4) + rcs(age,3) + BMI + smoking + hyperten + gender +
rcs(FVCPP,3) + TLcoPP, x=TRUE, y=TRUE, surv=TRUE, time.inc=2*52)
If I then want to look at this with
print(fh, latex = TRUE)
I get 3 coefs/SE/Wald
etc for MPV (MVP, MVP' and MVP'')
and 2 for age (age, age')
.
Could someone please explain to me what these outputs are? i.e. I believe they are to do with the restricted cubic splines I have added.