Hello there, I am using COX regression - Outcome: Readmissiontohospital. I've got covariates : age, gender, experience, institution, socialequality.
I'm fairly sure this won't show PH hazards. Would you recommend doing a PH hazard test for each covariate separately as seen in the covariate1 code? Then if it satisfied PH - then include in coxregression in the adjust. If it doesn't either use interaction or stop wasting time (as I know it wont satisfy COX regression and use parametric)
You may be wondering, why I'm bothering to test each covariate to see if it assessed PH when i'M FAILY sure a parametric test would be better, however, ultimately I would like to compare the results from COX to a parametric test and show parametric test is a better way to test- hence this hassle.
Now with regards to assessing PH for each covariate, would you recommend performing the goodness of fit, graphical interpretation for EACH covariate then adjusting as seen in (phase 2)
I'm fairly sure this won't show PH hazards. Would you recommend doing a PH hazard test for each covariate separately as seen in the covariate1 code? Then if it satisfied PH - then include in coxregression in the adjust. If it doesn't either use interaction or stop wasting time (as I know it wont satisfy COX regression and use parametric)
You may be wondering, why I'm bothering to test each covariate to see if it assessed PH when i'M FAILY sure a parametric test would be better, however, ultimately I would like to compare the results from COX to a parametric test and show parametric test is a better way to test- hence this hassle.
Now with regards to assessing PH for each covariate, would you recommend performing the goodness of fit, graphical interpretation for EACH covariate then adjusting as seen in (phase 2)
Code:
stcox readmission covariate1 estate phtest //schofields stphplot,by(readmission) adjust(covariate1) //adjusting if satisfy PH (phase 2)
Comment