| lmList {lme4} | R Documentation |
List of lm Objects with a Common Model
lmList(formula, data, family, subset, weights, na.action,
offset, pool, ...)
formula |
a linear formula object of the form
|
family |
an optional family specification for a generalized linear model. |
pool |
logical scalar, should the variance estimate pool the residual sums of squares |
... |
additional, optional arguments to be passed to the model function or family evaluation. |
data |
an optional data frame containing the
variables named in |
subset |
an optional expression indicating the
subset of the rows of |
weights |
an optional vector of ‘prior
weights’ to be used in the fitting process. Should be
|
na.action |
a function that indicates what should
happen when the data contain |
offset |
this can be used to specify an a
priori known component to be included in the linear
predictor during fitting. This should be |
data should be a data frame (not, e.g.
a groupedData object from the nlme package);
use as.data.frame first to convert the data.
While data is optional, the
package authors strongly recommend its use,
especially when later applying methods such as
update and drop1 to the fitted model
(such methods are not guaranteed to work properly
if data is omitted). If data is omitted,
variables will be taken from the environment of
formula (if specified as a formula) or from the
parent frame (if specified as a character vector).