Learn R Programming

secr (version 1.3.0)

homerange: Home Range Statistics

Description

Two ad hoc measures of home range size may be calculated in secr from capture--recapture data: dbar is the mean distance between consecutive capture locations, pooled over individuals (e.g. Efford 2004). RPSV (for 'Root Pooled Spatial Variance') is a measure of the 2-D dispersion of the locations at which individual animals are detected, pooled over individuals.

Usage

dbar(capthist)
RPSV(capthist)

Arguments

capthist
object of class capthist

Value

  • Scalar distance in metres, or a list of such values if capthist is a multi-session list.

Details

dbar is defined as $$\overline{d}=\frac{\sum\limits _{i=1}^{n} \sum\limits _{j=1}^{n_i - 1} \sqrt{(x_{i,j}-x_{i,j+1})^2 + (y_{i,j}-y_{i,j+1})^2}} {\sum\limits _{i=1}^{n} (n_i-1)}$$ RPSV is defined as $$RPSV = \sqrt{ \frac {\sum\limits _{i=1}^{n} \sum\limits _{j=1}^{n_i} [ (x_{i,j} - \overline x_i)^2 + (y_{i,j} - \overline y_i)^2 ]}{\sum\limits _{i=1}^{n} (n_i-1) - 1}}$$ dbar and RPSV have a specific role as proxies for detection scale in inverse-prediction estimation of density (Efford 2004; see ip.secr). dbar is used in autoini to obtain plausible starting values for maximum likelihood estimation.

References

Efford, M. G. (2004) Density estimation in live-trapping studies. Oikos 106, 598--610.

See Also

autoini

Examples

Run this code
data(captdata)  
dbar(captdata)
RPSV(captdata)

Run the code above in your browser using DataLab