Learn R Programming

ctmm (version 0.3.1)

summary.UD: Summarize a range distribution

Description

This function returns a list of biologically interesting parameters in human readable format, as derived from an autocorrelated kernel density estimate.

Usage

## S3 method for class 'UD':
summary(object,level.UD=0.95,level=0.95,...)

Arguments

object
An akde autocorrelated kernel-density estimate from the output of akde.
level.UD
Confidence level for the home-range area. E.g., the 50% core area.
level
Confidence level for the above area estimate. E.g., the 95% confidence interval of the 50% core area.
...
Unused options.

Value

  • A matrix with low, maximum likelihood, and high estimates for the following parameters: [object Object]

References

C. H. Fleming and W. F. Fagan and T. Mueller and K. A. Olson and P. Leimgruber and J. M. Calabrese (2015). Rigorous home-range estimation with movement data: A new autocorrelated kernel-density estimator. http://www.esajournals.org/doi/abs/10.1890/14-2010.1{Ecology, 96(5), 1182-1188}.

See Also

akde.

Examples

Run this code
# Load package and data
library(ctmm)
data(buffalo)

# Extract movement data for a single animal
cilla <- buffalo[[1]]

# Find the best OU movement model
# also see help(variogram.fit)
GUESS <- ctmm(tau=6*24*60^2)
FIT <- ctmm.fit(cilla,GUESS)

# Estimate and summarize the AKDE
UD <- akde(cilla,FIT)
summary(UD)

Run the code above in your browser using DataLab