overlapPlot: Plot overlapping kernel densities

View source: R/overlapPlot.R

overlapPlotR Documentation

Plot overlapping kernel densities

Description

Fits kernel density functions to two data sets and plots them, shading the area corresponding to the coefficient of overlap.

Usage

overlapPlot(A, B, xscale = 24, xcenter = c("noon", "midnight"),
   linetype = c(1, 2), linecol = c("black", "blue"), linewidth = c(1, 1),
   olapcol = "lightgrey", rug=FALSE, extend=NULL,
   n.grid = 128, kmax = 3, adjust = 1, ...)

Arguments

A, B

vectors of times of observations for species A and species B in radians, ie. scaled to [0, 2π]. Each must include at least 2 unique observations to fit a kernel density.

xscale

the scale for the x axis: 24 (the default) produces a curve with 0 to 24 hours. NA gives a scale in radians, labelled with pi.

xcenter

the center of the plot on the x axis: 'noon' (default) or 'midnight'.

linetype

a vector of length 2 giving the line type for each species. Look for lty in par for ways to specify this.

linecol

a vector of length 2 giving the line colour for each species. See the Color Specification section in par for details.

linewidth

a vector of length 2 giving the line width for each species.

olapcol

the colour to use for the shaded area. See the Color Specification section in par for details.

rug

if TRUE, the original observations will be displayed as a rug at the bottom of the plot, A below B.

extend

If not NULL, the plot extends 3 hours before and after the main 24-hr period, and extend specifies the background colour; the plot is not extended if extend = NULL.

n.grid

number of points at which to estimate the density for plotting; 100 is usually adequate to give a smooth-looking curve.

kmax

maximum value of k for optimal bandwidth estimation.

adjust

bandwidth adjustment (scalar).

...

Further arguments passed to the plotting functions such as main, xlab, ylab, ylim. Values for col, lwd, lty should be passed with linecol, linewidth, linetype.

Value

Returns invisibly a data frame with columns:

x

a vector of equally-spaced times from midnight to midnight inclusive on the scale specified by xscale.

densA

a vector of length x with the fitted kernel density for species A.

densB

a similar vector for species B.

Author(s)

Mike Meredith

See Also

densityPlot for plotting a single density curve.

Examples

# Get example data:
data(simulatedData)

# Do basic plot with defaults:
overlapPlot(pigObs, tigerObs)
# Make it prettier:
overlapPlot(tigerObs, pigObs, linet = c(1,1), linec = c("red", "blue"),
  rug=TRUE, extend="lightgreen", main="Simulated data")
legend("topleft", c("Tiger", "Pig"), lty=1, col=c("red", "blue"), bg="white")
# Add vertical dotted lines to mark sunrise (05:30) and sunset (18:47):
# (times must be in hours if the x-axis is labelled in hours)
abline(v=c(5.5, 18+47/60), lty=3)

# A plot centered on midnight:
overlapPlot(pigObs, tigerObs, xcenter = "m", rug=TRUE)
# Mark sunrise/sunset; values to the left of "00:00" are negative
# so subtract 24:
abline(v=c(5.5, (18+47/60) - 24), lty=3)


mikemeredith/overlap documentation built on Nov. 26, 2022, 7:11 p.m.