model_cooksdistance {auditor} | R Documentation |
Cook's distances
Description
Calculates Cook's distances for each observation.
Please, note that it will work only for functions with specified update
method.
Usage
model_cooksdistance(object)
observationInfluence(object)
Arguments
object |
An object of class |
Value
An object of the class auditor_model_cooksdistance
.
References
Cook, R. Dennis (1977). "Detection of Influential Observations in Linear Regression". doi:10.2307/1268249.
Examples
data(titanic_imputed, package = "DALEX")
# fit a model
model_glm <- glm(survived ~ ., family = binomial, data = titanic_imputed)
# use DALEX package to wrap up a model into explainer
glm_audit <- audit(model_glm,
data = titanic_imputed,
y = titanic_imputed$survived)
# validate a model with auditor
mc <- model_cooksdistance(glm_audit)
mc
plot(mc)
[Package auditor version 1.3.5 Index]