R/plot.random.bayesx.R

Defines functions plot.random.bayesx

plot.random.bayesx <-
function(x, diagnostics = FALSE, ...)
{	
  if(is.null(x)) {
    warning("there is nothing to plot!")
    return(invisible(NULL))
  }
  args <- list(...)
  args$x <- x
  args$diagnostics <- diagnostics
  do.call("plot.mrf.bayesx", args)

  return(invisible(NULL))
}

Try the R2BayesX package in your browser

Any scripts or data that you put into this service are public.

R2BayesX documentation built on Oct. 20, 2023, 9:11 a.m.