| EDR | R Documentation |
Computes Effective Detection Radius (EDR) for estimated
detection functions on point transects.
See ESW is for line transects.
EDR(object, newdata = NULL)
object |
An Rdistance model frame or fitted distance function,
normally produced by a call to |
newdata |
A data frame containing new values of
the covariates at which to evaluate the distance functions.
If |
Effective Detection Radius is the integral under the detection function times distance.
If newdata is present, the returned value is
a vector of effective sampling distances associated with
covariate values in newdata. Length of return
in this case is the number of rows in newdata.
If newdata is NULL, the returned value is a vector
of effective sampling distances associated with covariate
values in object. Length of return in this case
is the number of detected groups. The returned vector
has measurement units, i.e., object$outputUnits.
dfuncEstim, ESW,
effectiveDistance
# Load example thrasher data (point transect survey type)
data(thrasherDf)
# Fit half-normal detection function
dfunc <- thrasherDf |> dfuncEstim(formula=dist~bare)
# Compute effective detection radius (EDR)
EDR(dfunc) # vector length 192
effectiveDistance(dfunc) # same
EDR(dfunc, newdata = data.frame(bare=30)) # vector length 1
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.