hist.kasc {adehabitat}R Documentation

Histograms of Mapped Variables

Description

hist.kasc performs histograms of the variables mapped in objects of class kasc.

Usage

hist.kasc(x, type = c("h", "l"), adjust = 1, col, border, ...)

Arguments

x a raster map of class kasc
type what type of plot should be drawn. Possible types are:
* "h" for histograms,
* "l" for kernel density estimates (see ?density).
By default, type = "h" is used. If type = "l" is used, the position of the mean of each distribution is indicated by dotted lines
adjust if type = "l", a parameter used to control the bandwidth of the density estimate (see ?density)
col color for the histogram
border color for the border of the histogram
... further arguments passed to or from other methods

Author(s)

Mathieu Basille basille@biomserv.univ-lyon1.fr

See Also

as.kasc

Examples


## Example with factors and numeric variables
data(puechabon)
hist(puechabon$kasc)

## Removing the factor Aspect, and smoothing gives :
hist(puechabon$kasc[,-2], type = "l")


[Package adehabitat version 1.2-1 Index]