
This function provides the basic quantities which are used in forming a wide variety of diagnostics for checking the quality of regression fits.
influence(model, …)
# S3 method for lm
influence(model, do.coef = TRUE, …)
# S3 method for glm
influence(model, do.coef = TRUE, …)lm.influence(model, do.coef = TRUE)
logical indicating if the changed coefficients
(see below) are desired. These need
further arguments passed to or from other methods.
A list containing the following components of the same length or
number of rows na.action
method was used (such as na.exclude
) which restores them.
a vector containing the diagonal of the ‘hat’ matrix.
(unless do.coef
is false) a matrix whose
i-th row contains the change in the estimated coefficients which
results when the i-th case is dropped from the regression. Note
that aliased coefficients are not included in the matrix.
a vector whose i-th element contains the estimate
of the residual standard deviation obtained when the i-th
case is dropped from the regression. (The approximations needed for
GLMs can result in this being NaN
.)
a vector of weighted (or for class glm
rather deviance) residuals.
The influence.measures()
and other functions listed in
See Also provide a more user oriented way of computing a
variety of regression diagnostics. These all build on
lm.influence
. Note that for GLMs (other than the Gaussian
family with identity link) these are based on one-step approximations
which may be inadequate if a case has high influence.
An attempt is made to ensure that computed hat values that are
probably one are treated as one, and the corresponding rows in
sigma
and coefficients
are NaN
. (Dropping such a
case would normally result in a variable being dropped, so it is not
possible to give simple drop-one diagnostics.)
naresid
is applied to the results and so will fill in
with NA
s it the fit had na.action = na.exclude
.
See the list in the documentation for influence.measures
.
Chambers, J. M. (1992) Linear models. Chapter 4 of Statistical Models in S eds J. M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.
summary.lm
for summary
and related methods;
influence.measures
,
hat
for the hat matrix diagonals,
dfbetas
,
dffits
,
covratio
,
cooks.distance
,
lm
.
## Analysis of the life-cycle savings data
## given in Belsley, Kuh and Welsch.
summary(lm.SR <- lm(sr ~ pop15 + pop75 + dpi + ddpi,
data = LifeCycleSavings),
corr = TRUE)
utils::str(lmI <- lm.influence(lm.SR))
## For more "user level" examples, use example(influence.measures)
Run the code above in your browser using DataLab