MuMIn: code for the best (and not necessarily the top-) model

Hi! I have done a dredge of a model in R- studio using the MuMIn package, and got the subset results of models with AICc delta below 2: subset subset(result1.1,delta<2). I want to choose the most parimonious model in this subset, but I only know these codes:
top.model <- get.models(result1.1, subset = 1)[[1]]
summary (top.model)
(top.model)
confint(top.model)

... which gives me the result of the top model, and not nessecarily the best model. What code can be used to get the results of the spesific model I choose?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.