Update a glme Object

DESCRIPTION:

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

USAGE:

update(object, fixed, data, random, family, correlation,
       weights, dispersion, start, subset, method, na.action,
       control, verbose)

REQUIRED ARGUMENTS:

object
an object inheriting from class glme, representing a fitted generalized linear mixed-effects model.
other arguments
defined as in glme. See that functions documentation for descriptions of and default values for these arguments.

VALUE:

an updated glme object.

SEE ALSO:

.

EXAMPLES:

fm1 <- glme(resp ~ trt, Clinic, ~ 1 | clinic, family=binomial)
fm2 <- update(fm1, random = ~ 1 | clinic/trt)