by jhines » Tue Mar 12, 2013 10:01 am
Hi Zach,
The values in the results table are AICc values. AICc is the AIC value after a 'correction' for small sample sizes. When you entered the effective sample size (35), it changed the results table to AICc instead of AIC. The model output files only print AIC values. So, there is nothing wrong with the results table, except that the top delta-aic printed negative zero instead of zero. This is only a cosmetic problem caused by rounding error when subtracting the top AICc value from itself. It does not affect any other values.
AIC = -2*loglike + 2*k
AICc = AIC + 2*k*(k+1)/(ESS-k-1)
where k=number of parameters and ESS=effective sample size
Jim