Skip to contents

Generates plots for TaskDens.

Usage

# S3 method for TaskDens
autoplot(object, type = "dens", theme = theme_minimal(), ...)

Arguments

object

(TaskDens).

type

(character(1)): Type of the plot. Available choices:

theme

(ggplot2::theme())
The ggplot2::theme_minimal() is applied by default to all plots.

...

(any): Additional arguments, possibly passed down to the underlying plot functions.

Value

ggplot2::ggplot() object.

Examples

library(mlr3)
library(mlr3proba)
library(mlr3viz)
library(ggplot2)
task = tsk("precip")

head(fortify(task))
#>    precip
#>     <num>
#> 1:   67.0
#> 2:   54.7
#> 3:    7.0
#> 4:   48.5
#> 5:   14.0
#> 6:   17.2
autoplot(task, bins = 15)

autoplot(task, type = "freq", bins = 15)

autoplot(task, type = "overlay", bins = 15)

autoplot(task, type = "freqpoly", bins = 15)