BBRecap.custom.part: Bayesian inference for behavioural effect models based on a...

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/BBRecap.custom.part.R

Description

Bayesian 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.

Usage

1
2
3
BBRecap.custom.part (data,last.column.count=FALSE, partition, neval = 1000,
   by.incr = 1, prior.N = c("Rissanen", "Uniform", "one.over.N", "one.over.N2"),
   output = c("base", "complete"))

Arguments

data

can be one of the following:

  1. an M by t binary matrix/data.frame. In this case the input is interpreted as a matrix whose rows contain individual capture histories for all M observed units

  2. a matrix/data.frame with (t+1) columns. The first t columns contain binary entries corresponding to capture occurrences, while the last column contains non negative integers corresponding to frequencies. This format is allowed only when last.column.count is set to TRUE

  3. 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.

last.column.count

a logical. In the default case last.column.count=FALSE each row of the input argument data represents the complete capture history for each observed unit. When last.column.count is set to TRUE in each row the first t entries represent one of the observed complete capture histories and the last entry in the last column is the number of observed units with that capture history

partition

list. partition represents a partition of the set of all partial capture histories.

neval

a positive integer. neval is the number of values of the population size N where the posterior is evaluated starting from M. The default value is neval=1000.

by.incr

a positive integer. by.incr represents the increment on the sequence of possible population sizes N where the posterior is evaluated. The default value is by.incr=1. The use of by.incr>1 is discouraged unless the range of N values of interest is very large

prior.N

a character. prior.N is the label for the prior distribution for N. When prior.N is set to "Rissanen" (default) the Rissanen prior is used as a prior on N. This distribution was first proposed in Rissanen 1983 as a universal prior on integers. prior.N="Uniform" stands for a prior on N proportional to a constant value. prior.N="one.over.N" stands for a prior on N proportional to 1/N. prior.N="one.over.N2" stands for a prior on N proportional to 1/N^2.

output

a character. output selects 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

Details

Uniform prior distribution is considered for the nuisance parameters.

Value

Prior

prior distribution for N.

N.hat.mean

posterior mean for N

N.hat.median

posterior median for N

N.hat.mode

posterior mode for N

N.hat.RMSE

minimizer of a specific loss function connected with the Relative Mean Square Error.

HPD.N

95 \% highest posterior density interval estimate for N.

log.marginal.likelihood

log marginal likelihood.

N.range

values of N considered.

posterior.N

values of the posterior distribution for each N considered

partition

partition of the set H

Author(s)

Danilo Alunni Fegatelli and Luca Tardella

References

Farcomeni A. (2011) Recapture models under equality constraints for the conditional capture probabilities. Biometrika 98(1):237–242

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

Alunni Fegatelli D. (2013) New methods for capture-recapture modelling with behavioural response and individual heterogeneity. http://hdl.handle.net/11573/918752

See Also

partition.ch, LBRecap.custom.part, BBRecap

Examples

1
2
3
4
data(greatcopper)
partition.Mc1=partition.ch(quant.binary,t=ncol(greatcopper),breaks=c(0,0.5,1))
mod.Mc1=BBRecap.custom.part(greatcopper,partition=partition.Mc1)
str(mod.Mc1)

BBRecapture documentation built on March 26, 2020, 7:31 p.m.