Is there a way to retain the best models, for example, within two Alkaike Information Criterion (AIC) units of the best fitting model, during a model dredging approach in R? I am using the glmulti package, which returns the AIC of the best models, but does not allow visualizing the models associated with those values.
Thanks in advance.
Here is my example (data here):
results <- read.csv("gameresults.csv") require(glmulti) M <- glmulti(result~speed*svl*tailsize*strategy, data=results, name = "glmulti.analysis", intercept = TRUE, marginality = FALSE, level = 2, minsize = 0, maxsize = -1, minK = 0, maxK = -1, fitfunction = Multinom, method = "h", crit = "aic", confsetsize = 100,includeobjects=TRUE) summary(M) 
