R/drawBand.r

Defines functions drawBand

drawBand <- function(x, l, u, border=NA, col="gray90", ...) {
  polygon(c(x, rev(x)), c(l, rev(u)), border=border, col=col, ...)
}
pbreheny/breheny documentation built on Sept. 5, 2024, 6:45 p.m.