Learn R Programming

ctmm (version 0.2.9)

summary.ctmm: Summarize a continuous-time movement model

Description

This function returns a list of biologically interesting parameters in human readable format, as derived from a continuous-time movement model.

Usage

## S3 method for class 'ctmm':
summary(object,alpha=0.05,alpha.HR=0.05,...)

Arguments

object
A ctmm movement-model object from the output of ctmm.fit.
alpha
Significance level for parameter estimates.
alpha.HR
Significance level for the Gaussian home-range area.
...
Unused options.

Value

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

See Also

ctmm.fit.

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)
m1 <- ctmm(tau=60*60*24*10)
M1 <- ctmm.fit(cilla,m1)

# Tell us something interpretable
summary(M1)

Run the code above in your browser using DataLab