Package website: release | dev
This R package provides visualizations for mlr3 objects such as tasks, predictions, resample results or benchmark results via the autoplot()
generic of ggplot2.
Install the last release from CRAN:
Install the development version from GitHub:
library(mlr3)
library(mlr3viz)
task = tsk("iris")$select(c("Sepal.Length", "Sepal.Width"))
learner = lrn("classif.rpart", predict_type = "prob")
rr = resample(task, learner, rsmp("cv", folds = 3), store_models = TRUE)
# Default plot for task
autoplot(task)
For more examples plots you can have a look at the pkgdown references of the respective functions.
{mlr3viz} styles all plots with it’s own theme theme_mlr3()
(which is heavily influenced by the ggpubr::theme_pubr()
theme) and the “viridis” color palette. If you want to use a different theme or color palette, apply it after the autoplot()
call as in
For color scheme adjustments you might need to change *_color_*
to *_fill_*
or *_*_discrete
to *_*_cotinuous
, depending on the object that was visualized.
For even more control, you can look up the source code which ggplot2 geoms were used internally for a specific autoplot()
call (e.g. geom_point()
) and how they were called. You can then apply these lines again with different arguments after the autoplot()
call (similar as shown above with the theme_gray()
adjustment) to overwrite their appearance (for example point size, line width, etc.).