I fit cox regressions and I am interested in the effect of a predictor x, which is the last variable in the model (variable 7). I include some variables like sex and age in the model, because I want to adjust the model for them.
Using R function coxph() gives me the warning "Loglik converged before variable 3". In fact, I am not interested in variable 3, because it is just one of the variables I want to adjust for. But the word "before" makes me wonder whether this mean that results of all variables following variable 3 (which includs my predictor x) are not valid. Or are only the results of variable 3 affected?
More information: Actually, I am running multiple cox regressions and the described warning occurs only in some of the models for variable 3. I do want to adjust for variable 3 and thus to keep it in the code.
There is some discussion about this warning(1), but I have not found an answer to my question so far. Thank you.