R/as_Bwiqid.R

Defines functions as.Bwiqid.default as.Bwiqid

Documented in as.Bwiqid as.Bwiqid.default

# This file has the S3 generic 'as.Bwiqid' function and a series of methods.

as.Bwiqid <- function(object, ...) UseMethod("as.Bwiqid")

as.Bwiqid.default <- function(object, ...) {
  name <- deparse(substitute(object))
  header <- paste("MCMC values from object", sQuote(name))
  warning("Class 'Bwiqid' is deprecated, please use class 'mcmcOutput'.", call.=FALSE)
  message("Returning a class 'mcmcOutput' object.")
  mcmcOutput(object, header, ...)
}
# ...................................................................

Try the wiqid package in your browser

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

wiqid documentation built on Nov. 18, 2022, 1:07 a.m.