https://github.com/cran/bamlss
Raw File
Tip revision: cb1968e37dcadce8e3d2d964924fe311d7d193a9 authored by Nikolaus Umlauf on 25 January 2021, 14:20:02 UTC
version 1.1-3
Tip revision: cb1968e
bnd.R
plot.bnd <- function(x, ...)
{
  if(is.null(x))
    return(invisible(NULL))
  args <- list(...)
  args$map <- x
  do.call("plotmap", args)

  return(invisible(NULL))
}

back to top