R/print_gambin.R

Defines functions print.gambin

#' @export
print.gambin = function(x, ...) 
{
  cat("\n")
  cat("Gambin distribution fit\n")
  cat("Data: ")
  cat(x$Dataname)
  cat("\n\n")
  cat("Coefficients:\n")
  print.default(format(coef(x), digits = 4), print.gap = 2L, quote = FALSE)
  cat("\n")
}

Try the gambin package in your browser

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

gambin documentation built on April 17, 2021, 1:06 a.m.