print.local_fit_explainer: Prints Local Fit / Wangkardu Summary

Description Usage Arguments Examples

View source: R/print_coral_plots.R

Description

Prints Local Fit / Wangkardu Summary

Usage

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

Arguments

x

a local fit explainer produced with the 'local_fit' function

...

other arguments that will be passed to 'head' function

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
library("DALEX")
 ## Not run: 
library("randomForest")
apartments_rf_model <- randomForest(m2.price ~ construction.year + surface + floor +
                     no.rooms + district, data = apartments)
explainer_rf <- explain(apartments_rf_model,
                     data = apartmentsTest[,2:6], y = apartmentsTest$m2.price)
new_apartment <- apartmentsTest[1, ]
new_apartment
cr_rf <- local_fit(explainer_rf, observation = new_apartment,
    select_points = 0.002, selected_variable = "surface")
cr_rf

## End(Not run)

ceterisParibus documentation built on March 31, 2020, 5:22 p.m.