plot.funnel_measure {DALEXtra} | R Documentation |
Funnel plot for difference in measures
Description
Function plot.funnel_measure
creates funnel plot of differences in measures for two models across variable areas.
It uses data created with 'funnel_measure' function.
Usage
## S3 method for class 'funnel_measure'
plot(x, ..., dot_size = 0.5)
Arguments
x |
- funnel_measure object created with |
... |
- other parameters |
dot_size |
- size of the dot on plots. Passed to |
Value
ggplot object
Examples
library("mlr")
library("DALEXtra")
task <- mlr::makeRegrTask(
id = "R",
data = apartments,
target = "m2.price"
)
learner_lm <- mlr::makeLearner(
"regr.lm"
)
model_lm <- mlr::train(learner_lm, task)
explainer_lm <- explain_mlr(model_lm, apartmentsTest, apartmentsTest$m2.price, label = "LM")
learner_rf <- mlr::makeLearner(
"regr.ranger"
)
model_rf <- mlr::train(learner_rf, task)
explainer_rf <- explain_mlr(model_rf, apartmentsTest, apartmentsTest$m2.price, label = "RF")
learner_gbm <- mlr::makeLearner(
"regr.gbm"
)
model_gbm <- mlr::train(learner_gbm, task)
explainer_gbm <- explain_mlr(model_gbm, apartmentsTest, apartmentsTest$m2.price, label = "GBM")
plot_data <- funnel_measure(explainer_lm, list(explainer_rf, explainer_gbm),
nbins = 5, measure_function = DALEX::loss_root_mean_square)
plot(plot_data)
[Package DALEXtra version 2.3.0 Index]