plot.fairness_radar | R Documentation |
Makes radar plot showing different fairness metrics that allow to compare models.
## S3 method for class 'fairness_radar' plot(x, ...)
x |
|
... |
other plot parameters |
ggplot2
object
code based on ModelOriented auditor package, thanks agosiewska! https://modeloriented.github.io/auditor/
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" ) fradar <- fairness_radar(fobject, fairness_metrics = c( "ACC", "STP", "TNR", "TPR", "PPV" )) plot(fradar) rf_model <- ranger::ranger(Risk ~ ., data = german, probability = TRUE, num.trees = 200, num.threads = 1 ) explainer_rf <- DALEX::explain(rf_model, data = german[, -1], y = y_numeric) fobject <- fairness_check(explainer_rf, fobject) fradar <- fairness_radar(fobject, fairness_metrics = c( "ACC", "STP", "TNR", "TPR", "PPV" )) plot(fradar)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.