R/print.summary.Bayesiangammareg.R

Defines functions print.summary.Bayesiangammareg

Documented in print.summary.Bayesiangammareg

print.summary.Bayesiangammareg <-
function(x, ...){
  
  cat (" \n         #################################################################
       ###                  Bayesian Gamma Regression                ###
       ################################################################# \n")
  
  cat("\n Call: \n")
  print(x$call)
  cat("\n")
  
  printCoefmat(x$coefficients, digits=4)
  
  cat("\n deviance: \n")
  print(x$deviance)
  
  cat("\n AIC: \n")
  print(x$AIC)
  
  cat("\n BIC: \n")
  print(x$BIC)
}

Try the Bayesiangammareg package in your browser

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

Bayesiangammareg documentation built on March 26, 2020, 7:52 p.m.