plotD3.feature_importance_explainer | R Documentation |
Function plotD3.feature_importance_explainer
plots dropouts for variables used in the model.
It uses output from feature_importance
function that corresponds to permutation based measure of feature importance.
Variables are sorted in the same order in all panels. The order depends on the average drop out loss.
In different panels variable contributions may not look like sorted if variable importance is different in different models.
## S3 method for class 'feature_importance_explainer' plotD3( x, ..., max_vars = NULL, show_boxplots = TRUE, bar_width = 12, split = "model", scale_height = FALSE, margin = 0.15, chart_title = "Feature importance" )
x |
a feature importance explainer produced with the |
... |
other explainers that shall be plotted together |
max_vars |
maximum number of variables that shall be presented for for each model.
By default |
show_boxplots |
logical if |
bar_width |
width of bars in px. By default |
split |
either "model" or "feature" determines the plot layout |
scale_height |
a logical. If |
margin |
extend x axis domain range to adjust the plot.
Usually value between |
chart_title |
a character. Set custom title |
a r2d3
object.
Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. https://ema.drwhy.ai/
library("DALEX") library("ingredients") lm_model <- lm(m2.price ~., data = apartments) explainer_lm <- explain(lm_model, data = apartments[,-1], y = apartments[,1], verbose = FALSE) fi_lm <- feature_importance(explainer_lm, loss_function = DALEX::loss_root_mean_square, B = 1) head(fi_lm) plotD3(fi_lm) library("ranger") rf_model <- ranger(m2.price~., data = apartments) explainer_rf <- explain(rf_model, data = apartments[,-1], y = apartments[,1], label = "ranger forest", verbose = FALSE) fi_rf <- feature_importance(explainer_rf, loss_function = DALEX::loss_root_mean_square) head(fi_rf) plotD3(fi_lm, fi_rf) plotD3(fi_lm, fi_rf, split = "feature") plotD3(fi_lm, fi_rf, max_vars = 3, bar_width = 16, scale_height = TRUE) plotD3(fi_lm, fi_rf, max_vars = 3, bar_width = 16, split = "feature", scale_height = TRUE) plotD3(fi_lm, margin = 0.2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.