Learn R Programming

Rcapture (version 1.1)

closedp.custom: Customization of a Loglinear Model for Closed Population Capture-Recapture Experiments

Description

The closedp.mX function fits a loglinear model given a design matrix mX. The closedp.h function fits Mh or Mth models for which the form of the column for heterogeneity in the design matrix is determined by the user.

Usage

closedp.mX(X, dfreq=FALSE, mX, mname="Customized model")

closedp.h(X, dfreq=FALSE, m="Mh", h="Poisson", a=2)

## S3 method for class 'closedp.custom':
print(x, \dots)

## S3 method for class 'closedp.custom':
boxplot(x, \dots)

Arguments

X
The table of the observed capture histories in one of the two accepted formats. In the default format, it has one row per unit captured in the experiment. In this case, the number of columns in the table represents the number of capture occasions in the e
dfreq
This argument specifies the format of the data matrix X. By default, it is set to FALSE, which means that X has one row per unit. If it is set to TRUE, then the matrix X contains frequencies in its last column.
mX
The design matrix of the loglinear model. In this matrix, the order of the capture histories is as defined in the histpos.t function.
mname
A character string specifying the name of the customized model.
m
A character string indicating the model to fit, either "Mh"= Mh model or "Mth"= Mth model
h
The character string "Poisson" or a numerical R function specifying the form of the column for heterogeneity in the design matrix. "Poisson" represents the function $f(k)=a^k-1$, where $k$ is the number of captures. If an R funct
a
The value of the exponent's base for a Poisson model.
x
An object, produced by the closedp.mX or the closedp.h function, to print or to plot.
...
Further arguments passed to or from other methods.

Value

  • nThe number of captured units
  • resultsA table containing the estimated population size, the standard error of estimation, the deviance, the number of degrees of freedom and the Akaike criteria.
  • glmThe 'glm' object obtained from fitting the model.

Details

An intercept is added to the model. Therefore, the mX matrix must not contain a column of ones. The abundance estimation is calculated as the number of captured units plus the exponential of the intercept. Therefore, these functions are not suited for models with a behavioral effect. In closedp.h, the argument h cannot take the value "Chao" or "Darroch". These models are already fitted by the closedp function. The boxplot.closedp.custom function produces a boxplot of the Pearson residuals of the customized model.

References

Baillargeon, S. and Rivest, L.P. (2007). Rcapture: Loglinear models for capture-recapture in R. Journal of Statistical Software, 19(5), http://www.jstatsoft.org/ Rivest, L.P. and Baillargeon, S. (2007). Applications and extensions of Chao's moment estimator for the size of a closed population. Biometrics, 63(4), 999--1006.

See Also

closedp, closedp.Mtb

Examples

Run this code
data(HIV)
mat<-histpos.t(4)
mX2<-cbind(mat,mat[,1]*mat[,2])
closedp.mX(HIV,dfreq=TRUE,mX=mX2)

data(mvole)
period3<-mvole[,11:15]
psi <- function(x) { -log(3.5 + x) + log(3.5) }
closedp.h(period3, h = psi)

Run the code above in your browser using DataLab