| autoplot.TaskRegr | R Documentation |
Visualizations for mlr3::TaskRegr.
The argument type controls what kind of plot is drawn.
Possible choices are:
"target" (default): Box plot of the target variable.
"pairs": Passes data to GGally::ggpairs().
Color is set to target column.
## S3 method for class 'TaskRegr'
autoplot(object, type = "target", theme = theme_minimal(), ...)
object |
(mlr3::TaskRegr). |
type |
(character(1)): |
theme |
( |
... |
(ignored). |
ggplot2::ggplot().
if (requireNamespace("mlr3")) {
library(mlr3)
library(mlr3viz)
task = tsk("mtcars")
task$select(c("am", "carb"))
head(fortify(task))
autoplot(task)
autoplot(task, type = "pairs")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.