rhrAIC: Obtain the AIC of a parametric home-range

Description Usage Arguments See Also Examples

View source: R/rhrAIC.R

Description

Generic function to obtain Akaike's Information Criterion (AIC) for parametric home-ranges. This is currently only possible for parametric home-ranges.

Usage

1
rhrAIC(x, AICc = FALSE, ...)

Arguments

x

The home-range estimate.

AICc

Logical value, indicating if the AICc should be returned instead of the AIC.

...

None implemented.

See Also

AIC

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# Simulated data
set.seed(123)
dat <- data.frame(x = c(rnorm(100), rnorm(100, 20)), 
y = c(rnorm(100), rnorm(100, 20)))
uniCir <- rhrUniCirc(dat)
AIC(uniCir)
AIC(uniCir, AICc = TRUE)
biCir <- rhrBiCirc(dat)
AIC(biCir)
AIC(biCir, AICc = TRUE)
uniNorm <- rhrUniNorm(dat)
AIC(uniNorm)
AIC(uniNorm, AICc = TRUE)
biNorm <- rhrBiNorm(dat)
AIC(biNorm)
AIC(biNorm, AICc = TRUE)

jmsigner/rhr documentation built on June 26, 2020, 8:59 a.m.