R/print.summary.Gammareg.R

Defines functions print.summary.Gammareg

Documented in print.summary.Gammareg

print.summary.Gammareg <-
function(x, ...){
  
  cat (" \n            ################################################################
            ###                  Classic Gamma Regression                ###
            ################################################################ \n")
  
  cat("\n Call: \n")
  print(x$call)
  cat("\n")
  
  printCoefmat(x$coefficients, digits=4)
  
  cat("\n Covariance Matrix for Beta: \n")
  print(x$covB)
  
  cat("\n Covariance Matrix for Gamma: \n")
  print(x$covG)

  cat("\n AIC: \n")
  print(x$AIC)
  
  
  cat("\n Iteration: \n")
  print(x$iteration)
  

  cat("\n Convergence: \n")
  print(x$convergence)
}

Try the Gammareg package in your browser

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

Gammareg documentation built on July 8, 2020, 7:01 p.m.