dffits_stats {api2lm}R Documentation

DFFITS statistics

Description

dffits_stats returns the ordered DFFITS values (decreasing in magnitude) of model to identify the observations with the highest DFFITS values.

Usage

dffits_stats(model, n = 6L)

Arguments

model

A fitted model object from the lm function.

n

an integer vector of length up to dim(x) (or 1, for non-dimensioned objects). Values specify the indices to be selected in the corresponding dimension (or along the length) of the object. A positive value of n[i] includes the first/last n[i] indices in that dimension, while a negative value excludes the last/first abs(n[i]), including all remaining indices. NA or non-specified values (when length(n) < length(dim(x))) select all indices in that dimension. Must contain at least one non-missing value.

Value

A vector of statistics

See Also

dffits

Examples

lmod <- lm(price ~ sqft_living, data = home_sales)
dffits_stats(lmod, n = 5)

[Package api2lm version 0.2 Index]