View source: R/choose_metric.R
choose_metric | R Documentation |
Extracts metrics from metric_data
from fairness object.
It allows to visualize and compare parity loss of chosen metric values across all models.
choose_metric(x, fairness_metric = "FPR")
x |
object of class |
fairness_metric |
|
chosen_metric
object
It is a list with following fields:
parity_loss_metric_data data.frame
with columns: parity_loss_metric and label
metric chosen metric
label character, vector of model labels
data("german") y_numeric <- as.numeric(german$Risk) - 1 lm_model <- glm(Risk ~ ., data = german, family = binomial(link = "logit") ) explainer_lm <- DALEX::explain(lm_model, data = german[, -1], y = y_numeric) fobject <- fairness_check(explainer_lm, protected = german$Sex, privileged = "male" ) cm <- choose_metric(fobject, "TPR") plot(cm) rf_model <- ranger::ranger(Risk ~ ., data = german, probability = TRUE, num.trees = 200 ) explainer_rf <- DALEX::explain(rf_model, data = german[, -1], y = y_numeric) fobject <- fairness_check(explainer_rf, fobject) cm <- choose_metric(fobject, "TPR") plot(cm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.