I'm working on heart-transplant data for which I have to build a Cox mixed model in R
. As it is designed for this purpose, I chose to use the coxme
package but I'm having much trouble to select my model. I want to use a forward procedure but it is non-applicable to coxme
objects. I asked another question here whose answers allowed me to access to step()
's code to modify it so it is applicable to coxme
models. However, this is very difficult (for me at least) as the function is quite complicated (it is definitely not just about modifying exctractAIC()
, there are many other functions to adapt).
So here are my questions :
1) Is there a simpler way to run a forward on coxme
models ?
2) Should I use another package ?