Learn R Programming

auditor (version 1.3.5)

check_residuals_outliers: Checks for outliers

Description

Outlier checks

Usage

check_residuals_outliers(object, n = 5)

Value

indexes of lowest and highest standardized residuals

Arguments

object

An object of class 'explainer' created with function explain from the DALEX package.

n

number of lowest and highest standardized residuals to be presented

Examples

Run this code
dragons <- DALEX::dragons[1:100, ]
lm_model <- lm(life_length ~ ., data = dragons)
lm_audit <- audit(lm_model, data = dragons, y = dragons$life_length)
check_residuals_outliers(lm_audit)

Run the code above in your browser using DataLab