I have to compare three cox-regression models.
However, one of these violates the PH assumption. Stratfying the variable did not work because it is already categorical. Thus, weighted cox regression would be suitable.
I was wondering wether one can extract AIC of a coxphwmodel from the package coxphw?
Using extractAIC(model3)just gave 5.
Also, is it even possible to compare the models because they employ different methods?
Update:
I found this article by Smith, Betts, Forbes et al. (2011). They mention this article by Chou and Bentler (1996) and write
Because of the weighting, the weighted Cox hazards model is not a true likelihood approach; therefore, we used the Wald χ2 statistic as a large sample approximation to the likelihood, and used −χ2 + 2 * (number of parameters) of the model, as an approximation of AIC (Chou and Bentler 1996).
Any suggestions?