R/print.acovamcmc.R

#' @param x A \code{acovamcmc} object
#' @param ... Ignored
#' @method print acovamcmc

print.acovamcmc <- function(x, ...){
  cat("Gibbs Sampler Iterations:",x$Iterations, "\n\n")
  cat("Convergence Status:",x$Convergence_Diag,"\n\n")
  cat("Gelman-Rubin Threshold for Convergence: <=",x$Gelman_Rubin_Threshold,"\n\n")
  cat(100*x$Credible_Interval_Coverage,"% Credible Intervals (lower, estimate, upper):","\n")
  print.default(format(x$Credible_Interval),print.gap=2L,quote=FALSE)
  cat("\n")
  cat("Run Time (total elapsed seconds):",x$Run_Time[3],"\n")
}

Try the GibbsACOV package in your browser

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

GibbsACOV documentation built on May 2, 2019, 12:36 p.m.