Print a glmList Object
DESCRIPTION:
Information describing the individual
glm
fits corresponding to
object
is printed.
This includes the estimated coefficients and the residual deviance.
USAGE:
print(x, pool, ...)
REQUIRED ARGUMENTS:
- x
-
an object inheriting from class
glmList
,
representing a list of fitted
glm
objects.
- pool
-
an optional logical value indicating whether a pooled
estimate of the residual deviance should be used.
Default is
attr(object, "pool")
.
- ...
-
optional arguments passed to
print.default
;
see the documentation on that method function.
SEE ALSO:
.
EXAMPLES:
fm1 <- glmList(resp ~ trt | clinic, Clinic, family=binomial)
print(fm1)