I am running CMR models on manta ray population. So far, the values are as expected and made sense. However, I recently did model.average on the results. The averaged mdoels showed good and expected values for Phi, p, and pent. However, the N values didn't make sense. In the base model, where N estimates with the top model is ~800, the model averaging gave the N estimate only 95. In the Sex model, where N estimates are ~340 for F, and ~420 for M, the model averaging gave the N estimates of 41 & 48 for F & M.
This the model.average code I used:
- Code: Select all
#averaging all models with weight > 0
results.chat.best.all <- remove.mark (results.chat, c(1, 2, 4, 6:8, 10, 12:14, 16, 18:20, 22, 24)) #Removing the models you dont want to average
results.chat.best.all
real.ave.all.Phi = model.average(results.chat.best.all, parameter="Phi", vcf=F)
real.ave.all.p = model.average(results.chat.best.all, parameter="p", vcf=F)
real.ave.all.pent = model.average(results.chat.best.all, parameter="pent", vcf=F)
real.ave.all.N = model.average(results.chat.best.all, parameter="N", vcf=F)
Does anyone have any insight on why it's giving strange N, but decent values for the other parameters?
Thanks!