Print a summary.glme Object

DESCRIPTION:

Information summarizing the fitted generalized linear mixed-effects model represented by x is printed. This includes the AIC, BIC, and log-likelihood at convergence, the fixed effects estimates and respective standard errors, the standard deviations and correlations for the random effects, the within-group correlation and variance function parameters, if any are present, and the within-group dispersion.

USAGE:

print(x, verbose, ...)

REQUIRED ARGUMENTS:

x
an object inheriting from class summary.glme, representing a summarized glme object.
verbose
an optional logical value used to control the amount of printed output. Defaults to FALSE.
...
optional arguments passed to print.default; see the documentation on that method function.

SEE ALSO:

, .

EXAMPLES:

fm1 <- glme(resp ~ trt, Clinic, ~ 1 | clinic, family=binomial, disp=0)
print(summary(fm1))