Hi
I have used secrdesign to simulate a bunch of different datasets, all for a count model that uses one occasion. All the data summaries have n = u but with a higher number of total detections, for example:
Counts by occasion
1 Total
n 113 113
u 113 113
f 113 113
M(t+1) 113 113
losses 0 0
detections 212 212
detectors visited 39 39
detectors used 40 40
If I manually extract the number of individuals only caught once (singletons) I also get a smaller number than u:
> individual_totals <- apply(ch, 1, sum, na.rm = TRUE)
> singletons <- sum(individual_totals == 1)
> singletons
[1] 57
Is u interpreted differently for a count model with one occasion (something about being only detected in a single occasion)?
Many thanks
Greg