R/plot.rwl.R

Defines functions plot.rwl

Documented in plot.rwl

plot.rwl <- function(x, plot.type=c("seg","spag"),...){
  if (!inherits(x, "rwl")) {
    stop('use only with "rwl" objects')
  }
  switch(match.arg(plot.type),
         seg = seg.plot(x,...),
         spag = spag.plot(x,...))
}

Try the dplR package in your browser

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

dplR documentation built on Aug. 30, 2023, 9:08 a.m.