Bryan Hamilton wrote:Thank you. I'll re-read chapter 14 (Chapter 15 in my old hard copy manual).
Great, another R package to learn....Thanks for the advice I will take a look.
Only a suggestion, given the sort of data you probably have. There is the R package, and the older, somewhat less-complete (but still very useful) windows program called DENSITY. See the sub-forum on secr/DENSITY.
I think my recapture rates are OK, here is a summary:
 - Code: Select all
 0001 0010 0011 0100 0101 0110 0111 1000 1001 1010 1011 1100 1101 1110 1111 
  10    8    5   12    3    3    6   10    6    3    7    8    5    9   29 
I had the same issues when I was using MARK
If this is the correct translation of your data into an .inp file:
- Code: Select all
 0001   10;
0010    8;
0011    5;
0100    12;
0101   3;
0110   3;
0111   6;
1000   10;
1001    6;
1010   3;
1011   7;
1100   8;
1101   5;
1110   9;
1111  29;
then you must be doing something wrong. I had no trouble generating reasonable estimates of p, or abundance, using these encounter frequency data. 
Using a Huggins form, with and without individual random effects, I ran the standard 3 starting models ({p(t)=c(t)}, {p(.)=c(.)}, and {p(.),c(.)}). Here is the output of model averaging, 
with random effects:
- Code: Select all
                      Derived Parameter N Population Size 1
Model                                     Weight    Estimate      Standard Error
---------------------------------------- -------   -------------- --------------
{sigma,p(.)=c(.)}                        0.63493   205.2092227    57.4924234
{sigma,p(.),c(.)}                        0.30867   187.5560239    46.7803327
{sigma,p(t)=c(t)}                        0.05640   205.3005257    57.6356810
---------------------------------------- -------   -------------- --------------
Weighted Average                                   199.7653724    54.1940098
Unconditional SE                                                  55.0280748        
and 
without random effects:
- Code: Select all
                      Derived Parameter N Population Size 1
Model                                     Weight    Estimate      Standard Error
---------------------------------------- -------   -------------- --------------
{sigma=0,p(.)=c(.)}                      0.66785   128.3618669    2.3566863
{sigma=0,p(.),c(.)}                      0.27816   129.2458210    3.2348226
{sigma=0,p(t)=c(t)}                      0.05399   128.3318308    2.3478517
---------------------------------------- -------   -------------- --------------
Weighted Average                                   128.6061302    2.6004759
Unconditional SE                                                  2.6599399          
Note that models with random effects (sigma>0) were better supported in the data than were the models without random effects (sigma=0), which I suppose isn't surprising with trapping grids likely to introduce individual heterogeneity in capture probabilities. 
Point here isn't to tell you which of the two estimates are 'correct', merely that your data are sufficient to get reasonable estimates -- with sensible SE's and the like. If you're not generating the same estimates of N for ({p(t)=c(t)}, {p(.)=c(.)}, and {p(.),c(.)}), then you might want to check how you've set things up.