I have been performing Cox mixed effects regressions using coxme in R. These models have survival as the response, up to 6 interacting fixed effects and 2 random effects in the full model. I am concerned that multicollinearity may be occuring. For example I use the yields of several crops; if these are influenced by climatic variation then it is possible for them to covary with each other. Here's an example of the model, imagine that crop1 and crop3 are correlated, how important is this?
coxme(Survival ~ S * Crop1 * Crop2 * Crop3 * TreatmentA * TreatmentB * TreatmentC + (1|site) + (1|year), data = df1)
I have tried to explore this using VIF (car package) but it could be problematic with a Cox regression because there is no intercept.
Do I need to worry about correlated fixed effects? How much correlation is too much correlation?
What is the correct way to deal with correlated fixed effects?
Should I discard the approach using multiple crops, and switch to an approach where I would test it with three models of (where crop is either crop1, crop2, or crop3):
coxme(Survival ~ S * Crop * TreatmentA * TreatmentB * TreatmentC + (1|site) + (1|year), data = df1)
Crops 1-3 have 45, 45, and 61 "levels" each, treatments are all binary, $\rho_{1,2} = −0.5; \rho_{1,2} = 0.4; \rho_{1,3} = -0.4$. There are 2800 individuals, with a minimum of 10 individuals per level of each crop.
A clear (keep it simple for me ;D) & well referenced answer will be rewarded with a bounty