journey title Race results Section Largest dAIC Worst model: 0 Section Intermediate dAIC Next best model: 3 Section dAIC = 0 Best model: 6
You can calculate a Delta AIC value for each model
Delta AIC for a model is its distance from the best model, or the information lost by moving from the best model to that model
\[ \Delta AIC_i = AIC_{model} - AIC_{best model} \]
Delta AIC values are like the results of a race 🏃
You compare the finish times of competitors (alternative models) with that of the winner (best model)
journey title Race results Section Largest dAIC Worst model: 0 Section Intermediate dAIC Next best model: 3 Section dAIC = 0 Best model: 6
We’ll use the distsamp()
function to analyse our data, creating a separate output object for each model1
We already have output for our half-normal null model based on the truncated water deer sightings, called hn_NullT
Let’s create a second null model using a uniform detection function:
How does this output differ from the model with a half-normal detection function?
Use the hist()
function to draw your detection functions over the sightings data:
Which detection function looks like a better fit?
Next we check what the statistical support is for each detection function, using Information Theory
We populate an empty list object with the results of our individual models using list()
As we create the list, we name each model so they’re easy to identify later:
~
in the model formula is for detection and the second is for density.
to indicate that we’re calculating only an intercept for each parameter, rather than a covariateWe convert this standard list into a special unmarked format using fitList()
:
modSel()
function helps us select between candidate models: nPars AIC delta AICwt cumltvWt
hn.. 2 361.13 0.00 1e+00 1.00
unif.. 1 404.98 43.85 3e-10 1.00
R reminds us of:
nPars AIC delta AICwt cumltvWt
hn.. 2 361.13 0.00 1e+00 1.00
unif.. 1 404.98 43.85 3e-10 1.00
Here the best-supported model is the one which uses the half-normal detection function
Its lower AIC value, dAIC of zero, and much higher AIC weight demonstrate much stronger evidence for this model than the uniform detection function
I’m sure this is no surprise, given that detection of the water deer clearly declines in a curve with distance from the transect, rather than remaining constant!
We don’t recommend using strict rules for dAIC values to reject models
Models with dAIC from 0 to 9 or 12 are plausible to most objective people (Anderson 2008)
Use your understanding of the ecological system, and your judgement of the quality of your data and models