https://github.com/cran/bamlss
Raw File
Tip revision: 7038cac42f6a276bf945580cc2d5682cd5b59bdf authored by Nikolaus Umlauf on 29 October 2023, 15:50:07 UTC
version 1.2-2
Tip revision: 7038cac
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