remGP | R Documentation |
remGP
fits the catch-effort model of Gould & Pollock (1997) to removal
data from a single site (or combined data from many sites). At least 3 removal periods
are required to fit this model. Additionally, the model also accepts index (count)
data collected in conjunction with the removal data.
remGP(data, starts, K, method = "BFGS", se=TRUE, ...)
data |
|
starts |
Initial values for parameters |
K |
Integer representing upper bound for abundance for discrete integration |
method |
optimsation method (see |
se |
flag to return the standard error (hessian). |
a efit
model object.
y<- san_nic_rem$rem
catch<- apply(y,2,sum)
effort<- rep(nrow(y), length(catch))
emf <- eFrameGP(catch, effort)
mod <- remGP(emf)
Nhat<- calcN(mod)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.