R/print.summary.Bayesianbetareg.R

Defines functions print.summary.Bayesianbetareg

Documented in print.summary.Bayesianbetareg

print.summary.Bayesianbetareg <-
function(x, ...){
  
  cat (" \n            ################################################################
            ###                  Bayesian Beta 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 Bayesianbetareg package in your browser

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

Bayesianbetareg documentation built on May 30, 2017, 2:35 a.m.