print.auditor_model_halfnormal: Prints Model Halfnormal Summary

View source: R/print.R

print.auditor_model_halfnormalR Documentation

Prints Model Halfnormal Summary

Description

Prints Model Halfnormal Summary

Usage

## S3 method for class 'auditor_model_halfnormal'
print(x, ...)

Arguments

x

an object auditor_model_halfnormal created with model_halfnormal function.

...

other parameters

Examples

data(titanic_imputed, package = "DALEX")

# fit a model
model_glm <- glm(survived ~ ., family = binomial, data = titanic_imputed)

glm_audit <- audit(model_glm,
                   data = titanic_imputed,
                   y = titanic_imputed$survived)

# validate a model with auditor
model_halfnormal(glm_audit)



auditor documentation built on Nov. 2, 2023, 6:13 p.m.