drawCapRatesBeta {capwire} | R Documentation |
This function is just a wrapper for rbeta
which can be used in conjuction with simCapture
to simulate capture data where the rates are drawn from a beta distribution
drawCapRatesBeta(shape1, shape2)
shape1 |
The first shape parameter of the beta distribution |
shape2 |
The second shape parameter of the beta distribution |
This function returns a function which can be used as an argument for simCapture
A function which takes the number of capture rates to draw as an argument
Matthew W. Pennell
Pennell M.W., C.R. Stansbury, L.P. Waits and C.R. Miller. submitted. capwire: A R Package for Estimating Population Census Size from Non-Invasive Genetic Sampling
simCapture
, drawCapRatesUnif
, drawCapRatesGamma
, drawCapRatesExp
, drawCapRatesGeom
## Specify the distribution dist <- drawCapRatesBeta(shape1=1, shape2=0.5) ## Simulate a data set with the capture rates drawn from dist data <- simCapture(n=30, s=100, dist.func=dist) data