estimateN | R Documentation |
Estimate abundance from an Rdistance fitted model.
This function is called internally by abundEstim
. Most users will call
abundEstim
to estimate abundance unless they are running simulations or
bootstrapping.
estimateN(object, area = NULL, propUnitSurveyed = 1)
object |
An Rdistance model frame or fitted distance function,
normally produced by a call to |
area |
A scalar containing the total area of inference. Usually, this is
study area size. If |
propUnitSurveyed |
A scalar or vector of real numbers between 0 and 1.
The proportion of the default sampling unit that
was surveyed. If both sides of line transects were observed,
|
The abundance estimate for line-transect surveys (if no covariates are included in the detection function and both sides of the transect are observed) is
N =\frac{n(A)}{2(ESW)(L)}
where n is total number of sighted individuals
(i.e., sum(groupSizes(dfunc))
), L is the total length of
surveyed transect (i.e., sum(effort(dfunc))
),
and ESW is effective strip width
computed from the estimated distance function (i.e., ESW(dfunc)
).
If only one side of transects were observed, the "2" in the denominator
is not present (or, replaced with a "1").
The abundance estimate for point transect surveys (if no covariates are included) is
N =\frac{n(A)}{\pi(ESR^2)(P)}
where n is total number of sighted individuals (i.e., sum(groupSizes(dfunc))
),
P is the total number of surveyed points (i.e., sum(effort(dfunc))
),
and ESR is effective search radius
computed from the estimated distance function (i.e., ESR(dfunc)
).
Setting plot.bs=FALSE
and showProgress=FALSE
suppresses all intermediate output.
Estimation of site-specific density (e.g., on every transect) is accomplished by
predict(x, type = "density")
, which returns a
tibble containing density and abundance on the area surveyed by every
transect.
A list containing the following components:
density |
Estimated density in the surveyed area. |
abundance |
Estimated abundance on the study area. Equals density if area is not specified. |
n.groups |
The number of detected groups (not individuals, unless all group sizes = 1). |
n.seen |
The number of individuals (sum of group sizes). |
area |
Total area of inference. Study area size |
surveyedUnits |
Number of surveyed sites. This is total transect length for line-transects or number of points for point-transects. This total transect length does not include transects with missing lengths. |
propUnitSurveyed |
Proportion of the standard survey unit that was observed |
avg.group.size |
Average group size on non-NA transects |
w |
Strip width. |
pDetection |
Probability of detection. |
For line-transects that do not involve covariates, object$density is object$n.seen / (2 * propUnitSurveyed * object$w * object$pDetection * object$surveyedUnits)
dfuncEstim
, abundEstim
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.