Good day,
The difference between Expected and Realized N appears to be related to how I modeled variation in g0. EN and RN only differ when I allow g0 to vary among genetically recognizable "communities" of individuals, which occupy different spatial subsets of the greater study area. I modeled this variation in g0 as an individual covariate in a CL model in an attempt to account for variable search effort among the different spatial subsets (not really an appropriate way to model the variation in search effort). Differences in g0 among communities were strongly supported by AIC. Example results below.
# a null model
> null.fc4 = secr.fit(ch, mask = fc.mask4, CL = TRUE, verify = FALSE)
> region.N(null.fc4)
estimate SE.estimate lcl ucl n
E.N 259.3761 19.43791 223.9903 300.3520 182
R.N 259.3761 10.88377 240.8115 283.8008 182 # estimates identical
# sigma varies between sexes
> sig.sex.fc4 = secr.fit((ch, model = list(g0~1, sigma ~sex), mask = fc.mask4, CL = TRUE, start = null.fc4, verify = FALSE)
> region.N(sig.sex.fc4)
estimate SE.estimate lcl ucl n
E.N 260.3173 19.50589 224.8075 301.4362 182
R.N 261.9360 10.96186 243.1727 286.4544 182 # estimates similar
# g0 varies among communities
> g0comm.fc4 = secr.fit(ch, model = list(g0~comm, sigma~1), mask = fc.mask4, CL = TRUE, start = g0comm.fc, verify = FALSE)
> region.N(g0comm.fc4)
estimate SE.estimate lcl ucl n
E.N 283.0851 23.63826 240.4159 333.3273 182
R.N 249.0358 16.60368 223.5536 290.1447 182 # estimates differ
# g0 ~ community and sigma ~ sex
> g0comm.sig.sex.fc4 = secr.fit(ch, model = list(g0~comm, sigma~sex), mask = fc.mask4, CL = TRUE, start = g0comm.fc, verify = FALSE)
estimate SE.estimate lcl ucl n
E.N 284.9932 23.93293 241.8124 335.8849 182
R.N 253.2671 16.96443 226.9836 294.9078 182 # estimates differ
Murray, you had asked whether factors controlling detection could be confounded with those controlling density, and yes, the different communities may occur at different densities. I haven't yet come up with a good way to model this variation, because we don't have good information describing the territories of the different communities, and some communities were likely only sampled within a subset of their territory. However, we are compiling spatial information describing search effort as a grid. We hope to use that to better describe spatially variable search effort in the secr model. I'm not sure whether or not this will help if we continue to model density as homogeneous and variation in g0 is confounded with variation in density.
Any suggestions or comments welcome.
Incidentally, I found that I was able to reduce the resolution of the mask somewhat to
reduce processing time from days to hours, but with further decreases
in resolution the actual distribution of habitat (forest) was not well-represented, and the associated area of habitat within the masked region changed.
Eric