Into the rabbit hole...
Here is a follow-up with some results. Just to recap, the primary question I was asking was whether there exists a general result when individual heterogeneity in detection is modelled as a mixing of 2 or more mixtures within groups (such as gender) versus variation in detection probability across groups and mixtures? For example in a CJS model with Pledger mixtures (CJSMixture, mixtures=2), how do models generally compare when a group variable like sex is modelled affecting the mixing parameter pi, versus the detection parameter p?
pi(~sex) Phi(…)p(mixture)
versus
pi(~1) Phi(…)p(mixture+sex)
We might go further and ask about interactions between mixtures and grouping variables.
Here is a comparison of 8 models that do just that using 8 years of bimonthly lion detections on several hundred individuals. The two models above are models 6 and 4, respectively. I also include a CJS model without mixtures but a gender effect on p (model 5 below), to compare to the mixture model with no effects on p other than mixture (model 1). An intercept only model for p is also shown (model 8). Survival is modelled the same in each case as a function of 5 age-classes with a sex interaction.
- Code: Select all
model DeltaAICc weight npar form
3 0.00 0.57 15 pi(~1)Phi(~...)p(~mixture * sex)
8 1.79 0.23 15 pi(~sex)Phi(~...)p(~mixture + sex)
7 2.37 0.18 16 pi(~sex)Phi(~...)p(~mixture * sex)
4 8.20 0.01 14 pi(~1)Phi(~...)p(~mixture + sex)
2 9.96 0.00 13 pi(~1)Phi(~...)p(~mixture)
6 10.49 0.00 14 pi(~sex)Phi(~...)p(~mixture)
5 487.44 0.00 12 Phi(~...)p(~sex)
1 494.37 0.00 11 Phi(~...)p(~1)
Models 6 and 4 are separated by 2.29 AICc units suggest modelling the sex effect is best done as an additive effect on detection (in the presence of a mixture) rather than as an effect on mixture. These models, while structurally very different produced a similar result (checking the survival estimates showed <1% disagreement between models except for one age-sex class where model disagreement in Phi was 5%, this was true across all the top 6 models)
Models 6, 7 & 8 suggest that the pi mixture parameter is not the same in each gender group (i.e. unique proportions of males and females within mixtures 1 and 2) but gender effects on p should also be included.
I guess I was expecting further spread in the models along mixture effects so I would say that group effects on pi might be as important to consider as effects on p.