So, my question is, how are the derived density estimates different from the predicted density estimates when using full likelihood models? Does it even make sense to use derived() in this fashion, even to get estimates of overall, group-combined densities with confidence intervals?
As an aside, I've also fit all my models using the conditional likelihood, and I get entirely different results in terms of which effects are important. For example, given the following two pairs of models:
- Code: Select all
fit.sex.cl <- secr.fit(captHist, model=list(g0~sex, sigma~sex), CL=T)
fit.cl <- secr.fit(captHist, model=list(g0~1, sigma~1 ), CL=T)
fit.sex.fl <- secr.fit(captHist, model=list(g0~g, sigma~g ), CL=F, groups='sex')
fit.fl <- secr.fit(captHist, model=list(g0~1, sigma~1 ), CL=F, groups='sex')
Examining the AICc values for the conditional likelihood models indicates that the model with the sex effect is preferable over the constant model with quite a difference in AICc values. The opposite is true with the full likelihood models, with the sex effect model being substantially worse.