View source: R/print_explainer.R
print.explainer | R Documentation |
Print Explainer Summary
## S3 method for class 'explainer'
print(x, ...)
x |
a model explainer created with the 'explain' function |
... |
other parameters |
aps_lm_model4 <- lm(m2.price~., data = apartments)
aps_lm_explainer4 <- explain(aps_lm_model4, data = apartments, y = apartments$m2.price,
label = "model_4v")
aps_lm_explainer4
library("ranger")
titanic_ranger_model <- ranger(survived~., data = titanic_imputed, num.trees = 50,
probability = TRUE)
explainer_ranger <- explain(titanic_ranger_model, data = titanic_imputed[,-8],
y = titanic_imputed$survived,
label = "model_ranger")
explainer_ranger
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.