plot_parallel: Plot parallel coordinates

View source: R/graphics_plot_parallel.R

plot_parallelR Documentation

Plot parallel coordinates

Description

Parallel coordinates plot using GGally::ggparcoord.

Usage

plot_parallel(data, columns, group, colors = NULL, title = NULL)

Arguments

data

data.frame

columns

numeric columns to include (indices or names)

group

grouping column (index or name)

colors

optional vector of colors for groups

title

optional title

Value

returns a ggplot2::ggplot graphic

Examples

data(iris)
grf <- plot_parallel(iris, columns = 1:4, group = 5)
plot(grf)

daltoolbox documentation built on Feb. 10, 2026, 9:06 a.m.