R/contour.mvkde.q

contour.mvkde <- function(x, ...)
{
  if(x$d != 2)
    stop("contour.mvkde can only be used with 2 dimensional data")

  x <- list(x = x$axes[, 1], y = x$axes[, 2], z = x$z)
  contour.default(x, ...)
}

Try the bpkde package in your browser

Any scripts or data that you put into this service are public.

bpkde documentation built on May 2, 2019, 6:07 p.m.