Last updated 3/19/2025
The goal of MDChelp is to provide functions and demonstrations of common statistical methods in fish/ wildlife research.
Installation
You can install the development version of MDChelp from GitHub with:
# install.packages("pak")
pak::pak("tlyons253/MDChelp")
Example
This is a basic example which shows you how to solve a common problem:
library(MDChelp)
## simulate data and estimate abundance using Chapman's version of a Lincoln-Peterson estimator
LP.sim(500,75,0.3,sample.fixed=TRUE)->sim.dat
chapman(sim.dat$r,
sim.dat$n,
sim.dat$m)
#> $N.hat
#> [1] 643
#>
#> $SE
#> [1] 117.1205