R/plot.asc.r

"plot.asc" <- function(x, ...)
  {
      ## Verifications
      if (!inherits(x, "asc"))
          stop("should be an object of class \"asc\"")
      if (attr(x, "type")=="factor")
          stop("not implemented for factors")

      ## The plot
      xy<-getXYcoords(x)
      filled.contour(xy$x, xy$y, x, asp=1, ...)
  }

Try the adehabitat package in your browser

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

adehabitat documentation built on Jan. 28, 2018, 5:02 p.m.