coef.dfunc {Rdistance} | R Documentation |
Coefficients of an estimated detection function
Description
Extract the coefficients and estimated parameters (if any) from a estimated detection function object.
Usage
## S3 method for class 'dfunc'
coef(object, ...)
Arguments
object |
An estimated distance function object. An estimated distance
function object has class 'dfunc', and is usually produced by a call to
|
... |
Required for compatibility with the general |
Details
This is an extractor function for the parameters of an estimated detection function.
This function is equivalent to obj$parameters
for classical detection functions.
Value
The estimated parameter vector for the detection function. Length and interpretation of values in this vector vary depending on the form of the detection function and expansion terms.
See Also
Examples
# Load example sparrow data (line transect survey type)
data(sparrowDetectionData)
# Fit half-normal detection function
dfunc <- dfuncEstim(formula=dist~1
, detectionData=sparrowDetectionData)
# Print results
dfunc
# Extract the coefficient(s)
coef(dfunc)
[Package Rdistance version 3.0.0 Index]