DALEX (version 0.3.0)

print.explainer: Prints Explainer Summary

Description

Prints Explainer Summary

Usage

# S3 method for explainer
print(x, ...)

Arguments

x

a model expaliner created with the `explain` function

...

other parameters

Examples

Run this code
# NOT RUN {
library("breakDown")

wine_lm_model4 <- lm(quality ~ pH + residual.sugar + sulphates + alcohol, data = wine)
wine_lm_explainer4 <- explain(wine_lm_model4, data = wine, label = "model_4v")
wine_lm_explainer4

 
# }
# NOT RUN {
library("randomForest")
wine_rf_model4 <- randomForest(quality ~ pH + residual.sugar + sulphates + alcohol, data = wine)
wine_rf_explainer4 <- explain(wine_rf_model4, data = wine, label = "model_rf")
wine_rf_explainer4
 
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace