plot_explanations {lime} | R Documentation |
Plot a condensed overview of all explanations
Description
This function produces a facetted heatmap visualisation of all
case/label/feature combinations. Compared to plot_features()
it is much
more condensed, thus allowing for an overview of many explanations in one
plot. On the other hand it is less useful for getting exact numerical
statistics of the explanation.
Usage
plot_explanations(explanation, ...)
Arguments
explanation |
A |
... |
Parameters passed on to |
Value
A ggplot
object
See Also
Other explanation plots:
plot_features()
,
plot_text_explanations()
Examples
# Create some explanations
library(MASS)
iris_test <- iris[c(1, 51, 101), 1:4]
iris_train <- iris[-c(1, 51, 101), 1:4]
iris_lab <- iris[[5]][-c(1, 51, 101)]
model <- lda(iris_train, iris_lab)
explanation <- lime(iris_train, model)
explanations <- explain(iris_test, explanation, n_labels = 1, n_features = 2)
# Get an overview with the standard plot
plot_explanations(explanations)
[Package lime version 0.5.3 Index]