print.auditor_score | R Documentation |
Prints of Models Scores
## S3 method for class 'auditor_score'
print(x, ...)
x |
an object |
... |
other parameters |
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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.