Update a glmList Object

DESCRIPTION:

The non-missing arguments in the call to the update.glmList method replace the corresponding arguments in the original call used to produce object and glmList is used with the modified call to produce an updated fitted object.

USAGE:

update(object, formula, data, family, level, weights, subset,
       na.action, control, pool)

REQUIRED ARGUMENTS:

object
an object inheriting from class glmList, representing a list of glm fitted objects.
formula
a two-sided linear formula with the common model for the individuals lm fits.
other arguments
defined as in glmList. See that function's documentation for descriptions of and default values for these arguments.

VALUE:

an updated glmList object.

SEE ALSO:

.

EXAMPLES:

fm1 <- glmList(resp ~ trt | clinic, Clinic, family=binomial)
fm2 <- update(fm1, family=binomial(link="probit"))