- Code: Select all
0000 100 ;
00AA 200 ;
00BB 700 ;
AA00 300 ;
AAAA 300 ;
AABB 400 ;
BB00 600 ;
BBAA 300 ;
BBBB 100 ;
The data set consists of two primary sampling periods and two secondary sampling visits in each primary period.
If I use the 'Robust Design Multiple-State Occupancy Estimation Conditional Binomial' model I obtain the estimates I expect, without using any constraints or fixed values.
However, if I use the 'Robust Design Multiple-State Occupancy Estimation General' model the parameter estimates are confusing. Perhaps I do not understand the model correctly, but I am expecting the following estimates of initial occupancy:
PsiA = 0.33
PsiB = 0.33
For the transition matrix (top of right-hand column of page 826 of MacKenzie et al. 2009) I am expecting:
0.1, 0.2, 0.7
0.3, 0.3, 0.4
0.6, 0.3, 0.1
or using parameter names from MARK,
Psi 0 to A = 0.2
Psi 0 to B = 0.7
Psi A to 0 = 0.3
Psi A to B = 0.4
Psi B to 0 = 0.6
Psi B to A = 0.3
For detection probability I am expecting:
p[A,A] = 1.0
p[A,B] = 0.0
p[B,B] = 1.0
I actually get these estimates if I fix all of the detection probabilities to the above values. Although, that model has a delta AIC of > 9400.
If I use a model with only three detection probability parameters (p[A,A], p[A,B], p[B,B]), none of which are fixed, I obtain the following estimates:
- Code: Select all
Real Function Parameters
95% Confidence Interval
Parameter Estimate Standard Error Lower Upper
-------------------------- -------------- -------------- -------------- --------------
1:Phi0 0.0000000 0.0000000 0.0000000 0.0000000
2:Phi0 0.6666667 0.0086066 0.6495898 0.6833170
3:Psi 0 to A 1.0000000 0.9424320E-008 1.0000000 1.0000000
4:Psi 0 to B 1.0000000 0.0000000 1.0000000 1.0000000
5:Psi A to 0 0.3419188 657.95658 0.5122786E-304 1.0000000
6:Psi A to B 0.7695708 63.043177 0.8078489E-302 1.0000000
7:Psi B to 0 0.4002814 84.596508 0.7128231E-300 1.0000000
8:Psi B to A 0.0497186 84.596510 0.5158571E-305 1.0000000
9:p[A,A] A:Strata 1 Se 0.3885781E-015 0.1395841E-008 -.2735849E-008 0.2735850E-008
10:p[A,B] B:Strata 2 Se 1.0000000 0.0000000 1.0000000 1.0000000
11:p[B,B] B:Strata 2 Se 1.0000000 0.0000000 1.0000000 1.0000000
This model has a delta AIC of approximately 3800.
1. Are my expected values correct? In other words, do I understand the model correctly?
2. Should I be concerned that the estimates MARK returns immediately above are so different from what I expect unless I fix every detection probability?
3. Should I be concerned that the model that returns the values I expect has a delta AIC of > 9400?
I am particularly confused as to why MARK estimates p[A,A] = 0 in the last model and why MARK estimates any of the initial occupancies to be 0 in that model.
I tried the above example data set after a more realistic simulated data set yielded parameter estimates that were more-or-less equally far removed from what I expected them to be. That concerns me more than do the model results above because with the more realistic simulated data set I could not fix any of the detection probabilities to a known value.
Thank you for any advice. I will try to provide additional information if that will help.