rhrArea: Area of a home-range estimate

Description Usage Arguments Details Value Examples

Description

rhrArea returns the area of a home-range estimate.

Usage

1

Arguments

x

Instance of RhrEst.

...

None implemented.

Details

For geometric estimators the isopleth levels at which the area is calculated is already determined when the estimate is performed. Probabilistic estimators take an additional argument, levels, that determines at which isopleth level of the UD the area is evaluated.

Value

data.frame with the isopleth level and area in units of the coordinate system.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
data(datSH)

# Geometric estimator
mcp <- rhrMCP(datSH[, 2:3])
rhrArea(mcp)

mcp <- rhrMCP(datSH[, 2:3], levels = seq(50, 95, 5))
rhrArea(mcp)

# Note the levels argument does not change anything for geometric 
# estimators such mcp
rhrArea(mcp, levels = 44)


## Probabilistic estimator
kde <- rhrKDE(datSH[, 2:3])
rhrArea(kde)

## at a different isopleth level
rhrArea(kde, levels = 50)

## or at sequence of isopleth levels
rhrArea(kde, level = seq(50, 95, 5))

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