print.auditor_score {auditor} | R Documentation |
Prints of Models Scores
Description
Prints of Models Scores
Usage
## S3 method for class 'auditor_score'
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)
# calculate score
score(glm_audit, type = "auc")
[Package auditor version 1.3.5 Index]