I am using secr 2.5.0 in Rstudio on Windows 7.
I estimated density of a black bear population using DNA-based encounter history data. I am interested in deriving population size in the mask region for management purposes. I used region.N() with the top ranked model (D~1, g0~bk, sigma~1) and the mask used in the fitted model for ‘region=’. My mask excludes areas of non-habitat. My fitted models specified groups = ‘Sex’ as M and F.
When I run region.N() I get the following result:
bk.regN <- region.N(bk, region = subBigMask, se.N = T, alpha = 0.05)
> bk.regN
estimate______SE.estimate____lcl__________ucl_________n
E.N 125.9206___24.93855______85.73047 ___184.9516___90
R.N 170.9223___22.27129______137.65019___227.4268___90
When I call N from my fitted model, I get:
> bk$N
_____F________M
P 125.9206__125.9206
So is my region.N() estimate a sex-specific estimate? The secr manual says “Group-specific N has yet to be implemented”, so I was under the impression that the region.N() estimate was for the total population size. But now the separate ‘F’ and ‘M’ estimate has me questioning what these population estimates actually represent.
Also, D*mask area = 251.8
which makes me think region.N() only generated population size for one sex.
Any clarification on how R(N) and E(N) are calculated using region.N is greatly appreciated! Thanks!