The function abundance
applies the methodology found in Rivest et al. (1998) for estimating
caribou abundance using postcalving aggregations detected by radio telemetry.
abundance(mat, n, model = c("H", "I", "T"), B, maxT.hat)# S3 method for abundance
print(x,…)
A matrix containing in the first column the number of radio-collared animals in the detected (photographed) groups and in the second column the corresponding size of the detected groups.
A numeric: the total number of active collars during the census.
A character string indicating the model to determine the probability that a group with collared animals is detected \(p_i\). It can be either "H" = homogeneity model, "I" = independence model or "T" = threshold model (see Details). The default is "H".
A numeric: a bound for the threshold model.
A numeric: an upper bound used in the numerical computation of T.hat
,
the estimator for the total number of animals in a herd
(used by the optimize
function). Useful when a warning is generated about
T.hat
being equal to maxT.hat
. The default is n*max(mat[,2])
.
An object, produced by the abundance
function, to print.
Further arguments to be passed to methods (see print.default
).
The number of detected groups having radio-collared animals.
The total number of radio-collared animals found in the detected groups.
The total number of animals counted in the detected groups.
The estimated parameter related to the probability of detection.
The estimated standard error of rr
.
A matrix containing a sorted copy of the input matrix mat
in the first two
columns, the detection probabilities \(p_i\) in the third column and the
probabilities that the group has at least one collared animal \(\pi_i\) in
the last column.
The estimator for the total number of animals in a herd.
The estimated standard error of T.hat
.
The maximum value of the loglikelihood function for the detected model.
A vector with the statistic and the p-value of a score test for the randomness assumption available only for the homogeneity, independence and threshold model with B=2 or 3.
The function call (object of class "call").
DETECTION MODELS
- homogeneity model (model="H"
):
$$p_i = r \mbox{ if } X_i \geq 1$$
- independence model (model="I"
):
$$p_i = 1-(r^{X_i})$$
- threshold model (model="T"
):
$$
p_i = \left\{ \begin{array}{ll}
1 & \mbox{if } X_i \geq \mbox{\code{B}} \\
r & \mbox{if } 1 \leq X_i < \mbox{\code{B}} \end{array} \right.
$$
where \(p_i\) is the probability that a group with collared animals is detected,
\(X_i\) is the number of radio-collared in the detected (photographed) groups and
\(r\) is a parameter related to the probability of detection.
For the threshold model, B
is a bound given as a function's argument.
Rivest, L.-P., Couturier, S. and Crepeau, H. (1998). Statistical Methods for estimating caribou abundance using postcalving aggregations detected by radio telemetry. Biometrics, 54(3), 865-876.
# NOT RUN {
data(GRH93)
abundance(GRH93, n=92) # default model="H"
abundance(GRH93, n=92, model="H")
abundance(GRH93, n=92, model="I")
abundance(GRH93, n=92, model="T", B=2)
abundance(GRH93, n=92, model="T", B=4)
abundance(GRH93, n=92, model="T", B=6)
# }
Run the code above in your browser using DataLab