R/c.bayesx.R

Defines functions c.bayesx

c.bayesx <- function(...)
{
  b <- list(...)
  x <- NULL
  for(i in 1L:length(b))
    x <- c(x, b[i])
  Call <- match.call()
  names(x) <- as.character(Call[-1L])
  class(x) <- "bayesx"

  return(x)
}

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.