Print a glme Object

DESCRIPTION:

Information describing the fitted generalized linear mixed-effects model represented by x is printed. This includes the fixed effects, 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, ...)

REQUIRED ARGUMENTS:

x
an object inheriting from class glme, representing a fitted generalized linear mixed-effects model.
...
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)
print(fm1)