Plot the confusion matrix, with `title` and using `cmap`.
plot_confusion_matrix(
interp,
normalize = FALSE,
title = "Confusion matrix",
cmap = "Blues",
norm_dec = 2,
plot_txt = TRUE,
figsize = c(4, 4),
...,
dpi = 120
)
interpretation object
normalize
title
color map
norm dec
plot text
plot size
additional parameters to pass
dots per inch
None
if (FALSE) {
interp = ClassificationInterpretation_from_learner(model)
interp %>% plot_confusion_matrix(dpi = 90,figsize = c(6,6))
}