Last data update: 2014.03.03

R: Plot a 'nodeFillingOutput' object.
plot.nodeFillingOutputR Documentation

Plot a nodeFillingOutput object.

Description

Plots the boundary, all holes and the locations of all nodes. Should be used to decide if the nodes fill the region and are spaced closely enough to give good resolution in the plots. The only reason not to make the nodes too closely spaced is when the computing time or memory becomes too great.

Usage

## S3 method for class 'nodeFillingOutput'
plot(x,...)

Arguments

x

an object of type nodeFillingOutput returned by either nodeFilling or removeHole.

...

other arguments to be passed to functions plot, points, lines.

Author(s)

Ronald P. Barry rpbarry@alaska.edu

References

Ronald P. Barry, Julie McIntyre. Estimation animal densities and home range in regions with irregular boundaries and holes: A lattice-based alternative to the kernel density estimator. Ecological Modelling 222 (2011) 1666-1672.

Examples

plot.new()
data(polygon1)

nodeFillingOutput = nodeFilling(poly=polygon1,node.spacing=0.01)
plot(nodeFillingOutput)

Results