Learn R Programming

glmmML (version 0.25)

print.glmmML: Prints a 'glmmML' object.

Description

A glmmML object is the output of glmmML.

Usage

print.glmmML(x, digits = max(3, getOption("digits") - 3), na.print = "", ...)

Arguments

x
The glmmML object
digits
Number of printed digits.
na.print
How to print NAs
...
Additional parameters, which are ignored.

Value

  • A short summary of the object is printed.

Details

Nothing in particular.

References

Brostr�m (2003)

See Also

glmmML

Examples

Run this code
## The function is currently defined as
function (x, digits = max(3, getOption("digits") - 3), na.print = "", 
    ...) 
{
  cat("Call: ", deparse(x$call), "")
  cat("Coefficients:
")
  print.default(format(x$coefficients, digits = digits), print.gap = 2, 
                quote = FALSE)
  cat("Standard errors:
")
  print.default(format(x$sd, digits = digits), print.gap = 2, 
                quote = FALSE)
  if(x$mixed){
    cat("Standard deviation in mixing distribution: ", x$sigma, "")
    cat("Std. Error:                                ", x$sigma.sd, "")
  }
  cat("Degrees of Freedom:", 
      x$df.residual, "Residual
")
  cat("Residual Deviance:",
      format(signif(x$deviance, digits)),
      "tAIC:",
      format(signif(x$aic, digits)), "")
  invisible(x)
  }

Run the code above in your browser using DataLab