R/print.summary.robmixglm.R

Defines functions print.summary.robmixglm

print.summary.robmixglm <- function(x, digits = max(3L, getOption("digits") - 3L), ...) {
  if (!inherits(x, "summary.robmixglm"))
    stop("Use only with 'summary.robmixglm' objects.\n")
  printCoefmat(x$coefficients,digits=digits,na.print="")
  cat("\n")
  print(data.frame(logLik = x$logLik,AIC = x$AIC, BIC = x$BIC,
                   row.names = " "))
  invisible(x)
 }

Try the robmixglm package in your browser

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

robmixglm documentation built on May 9, 2022, 9:08 a.m.