https://github.com/cran/bamlss
Raw File
Tip revision: d1b04f4bace2f97fa521f321fbf48529f987b015 authored by Nikolaus Umlauf on 12 October 2018, 07:40:03 UTC
version 1.0-1
Tip revision: d1b04f4
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