print.local_surrogate_explainer: Generic print function for local surrogate explainers

Description Usage Arguments Examples

View source: R/plot_print.R

Description

Generic print function for local surrogate explainers

Usage

1
2
## S3 method for class 'local_surrogate_explainer'
print(x, ...)

Arguments

x

object of class local_surrogate_explainer

...

currently ignored

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Example based on apartments data from DALEX package.
library(DALEX)
library(randomForest)
library(localModel)
data('apartments')
mrf <- randomForest(m2.price ~., data = apartments, ntree = 50)
explainer <- explain(model = mrf,
                     data = apartments[, -1])
model_lok <- individual_surrogate_model(explainer, apartments[5, -1],
                                        size = 500, seed = 17)
plot(model_lok)
model_lok

mstaniak/localExplanations documentation built on Sept. 24, 2021, 6:21 p.m.