coef.dfunc: Coefficients of an estimated detection function

View source: R/coef.dfunc.r

coef.dfuncR 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 dfuncEstim.

...

Required for compatibility with the general coef method. Any extra arguments to this function are ignored.

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

AIC, dfuncEstim

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)


tmcd82070/Rdistance documentation built on April 10, 2024, 10:20 p.m.