R/pie.R

piegraph <-  function(x,...)
  UseMethod("graph")

piegraph.default <- function(x,...)
  pie(x, labels = names(x), edges = 200, radius = 0.8,
      clockwise = FALSE, init.angle = if(clockwise) 90 else 0,
      density = NULL, angle = 45, col = NULL, border = NULL,
      lty = NULL, main = NULL, ...)

piegraph.station <- function(x,...) {
}

piegraph.dsensemble <- function(x,...) {
}


  
metno/esd.test documentation built on May 22, 2019, 7:49 p.m.