Unconditional likelihood inference for a general model framework based on the capture probabilities conditioned on each possible partial capture history. As suggested in Alunni Fegatelli and Tardella (2012) the conditional approach originally proposed in Farcomeni (2011) [saturated reparameterization] is reviewed in terms of partitions into equivalence classes of conditional probabilities. In this function the user can directly provide the model as a partition.
LBRecap.custom.part (data,last.column.count=FALSE, partition, neval = 1000,
by.incr = 1, output = c("base", "complete"))
can be one of the following:
an \(M\) by \(t\) binary matrix/data.frame
a matrix/data.frame with \((t+1)\) columns according to the value of last.column.count
a \(t\)-dimensional array or table representing the counts of the \(2^t\) contingency table of binary outcomes \(M\) is the number of units captured at least once and \(t\) is the number of capture occasions.
a logical. In the default case last.column.count=FALSE
each row of data
represents the complete capture history for each observed unit. When codelast.column.count=TRUE in each row the first \(t\) entries represent one of the possible observed complete capture histories and the last entry (last column) is the number of observed units with that capture history
list. partition
represents a partition of the set of all partial capture histories.
a positive integer. neval
is the number of values evaluated for the population size N. The default value is neval
=1000.
a positive integer. by.incr
represents the increment on the sequence of evaluated values for \(N\). The default value is by.incr
=1.
character. output
select the kind of output from a very basic summary info on the posterior output (point and interval estimates for the unknown N
) to more complete details.
(if output="complete"
) the function LBRecap
returns a list of:
N.hatunconditional maximum likelihood estimate for \(N\)
CIinterval estimate for \(N\)
pH.hatpoint estimate of nuisance parameters (conditional probabilities)
AICAkaike information criterion.
L.FailureLikelihood Failure condition
N.rangesequence of \(N\) values considered
log.likvalues of the log-likelihood distribution for each \(N\) considered
partitionslist of subsets of partial capture histories corresponding to equivalence classes
The unconditional likelihood is evaluated by means of glm/glmer
for each value of the N
parameter and it is then maximized.
Alunni Fegatelli, D. and Tardella, L. (2016), Flexible behavioral capture<U+2013>recapture modeling. Biometrics, 72(1):125-135. doi:10.1111/biom.12417
Alunni Fegatelli, D. and Tardella, L. (2012) Improved inference on capture recapture models with behavioural effects. Statistical Methods & Applications Applications Volume 22, Issue 1, pp 45-66 10.1007/s10260-012-0221-4
Farcomeni A. (2011) Recapture models under equality constraints for the conditional capture probabilities. Biometrika 98(1):237--242
# NOT RUN {
data(greatcopper)
partition.Mc1=partition.ch(quant.binary,t=ncol(greatcopper),breaks=c(0,0.5,1))
mod.Mc1=LBRecap.custom.part(greatcopper,partition=partition.Mc1)
str(mod.Mc1)
# }
Run the code above in your browser using DataLab