Print all cutoffs
# S3 method for all_cutoffs
print(x, ..., label = NULL)
x |
|
---|---|
... | other print parameters |
label | character, label of model to plot. Default NULL. If default prints all models. |
data("german")
y_numeric <- as.numeric(german$Risk) - 1
lm_model <- glm(Risk ~ .,
data = german,
family = binomial(link = "logit")
)
rf_model <- ranger::ranger(Risk ~ .,
data = german,
probability = TRUE,
num.trees = 200,
num.threads = 1
)
explainer_lm <- DALEX::explain(lm_model, data = german[, -1], y = y_numeric)
#> Preparation of a new explainer is initiated
#> -> model label : lm ( default )
#> -> data : 1000 rows 9 cols
#> -> target variable : 1000 values
#> -> predict function : yhat.glm will be used ( default )
#> -> predicted values : No value for predict function target column. ( default )
#> -> model_info : package stats , ver. 4.1.1 , task classification ( default )
#> -> predicted values : numerical, min = 0.1369187 , mean = 0.7 , max = 0.9832426
#> -> residual function : difference between y and yhat ( default )
#> -> residuals : numerical, min = -0.9572803 , mean = 1.940006e-17 , max = 0.8283475
#> A new explainer has been created!
explainer_rf <- DALEX::explain(rf_model, data = german[, -1], y = y_numeric)
#> Preparation of a new explainer is initiated
#> -> model label : ranger ( default )
#> -> data : 1000 rows 9 cols
#> -> target variable : 1000 values
#> -> predict function : yhat.ranger will be used ( default )
#> -> predicted values : No value for predict function target column. ( default )
#> -> model_info : package ranger , ver. 0.13.1 , task classification ( default )
#> -> predicted values : numerical, min = 0.07081548 , mean = 0.6970382 , max = 0.9994444
#> -> residual function : difference between y and yhat ( default )
#> -> residuals : numerical, min = -0.737623 , mean = 0.002961826 , max = 0.6630218
#> A new explainer has been created!
fobject <- fairness_check(explainer_lm, explainer_rf,
protected = german$Sex,
privileged = "male"
)
#> Creating fairness classification object
#> -> Privileged subgroup : character ( Ok )
#> -> Protected variable : factor ( Ok )
#> -> Cutoff values for explainers : 0.5 ( for all subgroups )
#> -> Fairness objects : 0 objects
#> -> Checking explainers : 2 in total ( compatible )
#> -> Metric calculation : 10/13 metrics calculated for all models ( 3 NA created )
#> Fairness object created succesfully
ac <- all_cutoffs(fobject,
fairness_metrics = c(
"TPR",
"FPR"
)
)
print(ac)
#>
#> All cutofs for models:
#> lm, ranger
#>
#> First rows from data:
#> parity_loss metric cutoff label
#> 1 0 TPR 0.00 lm
#> 2 0 FPR 0.00 lm
#> 3 0 TPR 0.01 lm
#> 4 0 FPR 0.01 lm
#> 5 0 TPR 0.02 lm
#> 6 0 FPR 0.02 lm
#>