I am trying to run a dredge on my full model clogit
(from package survival
) but R keeps crashing every time I attempt it. I just get an error message saying, "R encountered a fatal error. The session was terminated."
library(survival)
FullModel <- clogit(OBSERVED ~ Canopy + distgr_sca + Near_Hwy3 + strata(PID1), Compiled)
library(MuMIn)
dredge(FullModel)
This is my code. Any ideas on why this is crashing, or other ways I can go about running a full dredge on my model?
Thank you.