print.auditor_model_evaluation {auditor} | R Documentation |
Prints Model Evaluation Summary
Description
Prints Model Evaluation Summary
Usage
## S3 method for class 'auditor_model_evaluation'
print(x, ...)
Arguments
x |
an object |
... |
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_evaluation(glm_audit)
[Package auditor version 1.3.5 Index]