sePetersen {recapr} | R Documentation |
Standard Error of the Petersen Estimator
Description
Calculates the standard error of the Petersen estimator in a mark-recapture experiment, with given values of sample sizes and number of recaptures.
Usage
sePetersen(n1, n2, m2)
Arguments
n1 |
Number of individuals captured and marked in the first sample. This may be a single number or vector of values. |
n2 |
Number of individuals captured in the second sample. This may be a single number or vector of values. |
m2 |
Number of marked individuals recaptured in the second sample. This may be a single number or vector of values. |
Value
The estimate variance of the Petersen estimator, calculated as sqrt((n1^2)*n2*(n2-m2)/(m2^3))
Note
Any Petersen-type estimator (such as this) depends on a set of assumptions:
The population is closed; that is, that there are no births, deaths, immigration, or emigration between sampling events
All individuals have the same probability of capture in one of the two events, or complete mixing occurs between events
Marking in the first event does not affect probability of recapture in the second event
Individuals do not lose marks between events
All marks will be reported in the second event
Author(s)
Matt Tyers
See Also
NPetersen, vPetersen, rPetersen, pPetersen, powPetersen, ciPetersen
Examples
sePetersen(n1=100, n2=100, m2=20)