View source: R/plot_ceteris_paribus_oscillations.R
plot.ceteris_paribus_oscillations | R Documentation |
This function plots local variable importance plots calculated as oscillations in the Ceteris Paribus Profiles.
## S3 method for class 'ceteris_paribus_oscillations' plot(x, ..., bar_width = 10)
x |
a ceteris paribus oscillation explainer produced with function |
... |
other explainers that shall be plotted together |
bar_width |
width of bars. By default |
a ggplot2
object
Explanatory Model Analysis. Explore, Explain, and Examine Predictive Models. https://ema.drwhy.ai/
library("DALEX") library("ranger") apartments_rf_model <- ranger(m2.price ~., data = apartments) explainer_rf <- explain(apartments_rf_model, data = apartments_test[,-1], y = apartments_test[,1], label = "ranger forest", verbose = FALSE) apartment <- apartments_test[1:2,] cp_rf <- ceteris_paribus(explainer_rf, apartment) plot(cp_rf, color = "_ids_") vips <- calculate_oscillations(cp_rf) vips plot(vips)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.