SimRecapt: Looking at how number of marked individuals affect the...

Description Usage Arguments Value Examples

Description

Gives the recaptures when given population, marked individuals and sample size

Usage

1
SimRecapt(N, M, c, iter = 1)

Arguments

N

Total population of the species

M

Marked individuals at the first trapping or initially

c

Total individuals captured in the second trapping

iter

Total number of iterations you want to simulate

Value

Recaptures of marked individuals for the sample size

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# A simple situation with population of 1000 with 88 marked and sample size 128
SimRecapt(1000, 88, 128)

# Save the recaptures and do a population estimation
N <- 300
M <- 72
c <- 50
iter <- 10
r <- SimRecapt(N, M, c, iter)
PopEst(M, c, r)

Ljeevan9211/SimJ documentation built on May 22, 2019, 5:37 p.m.