autoplot.TaskClust: Plots for Clustering Tasks

View source: R/TaskClust.R

autoplot.TaskClustR Documentation

Plots for Clustering Tasks

Description

Visualizations for mlr3cluster::TaskClust. The argument type controls what kind of plot is drawn. Possible choices are:

  • "pairs" (default): Passes data GGally::ggpairs().

Usage

## S3 method for class 'TaskClust'
autoplot(object, type = "pairs", theme = theme_minimal(), ...)

Arguments

object

(mlr3cluster::TaskClust).

type

(character(1)):
Type of the plot. See description.

theme

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

...

(ignored).

Value

ggplot2::ggplot().

Examples

if (mlr3misc::require_namespaces("mlr3cluster", quietly = TRUE)) {
library(mlr3cluster)
task = tsk("usarrests")

head(fortify(task))
autoplot(task)
}

mlr3viz documentation built on Feb. 22, 2026, 5:08 p.m.