parallelcoords
statistics: parallelcoords (x)
statistics: parallelcoords (x, name, value, …)
statistics: parallelcoords (ax, …)
statistics: h = parallelcoords (…)
Create a parallel coordinates plot of the multivariate data in x.
parallelcoords (x) plots each observation (row) of the
n-by-p matrix x as a line connecting the values of its
p coordinates, which are placed at the equally spaced horizontal
positions 1, 2, …, p.
The following name/value pairs are accepted:
"Group""Standardize""off" (default) uses the raw data, "on" centers and scales
each column to zero mean and unit standard deviation, "PCA" uses the
principal component scores, and "PCAStd" uses the principal component
scores of the standardized data."Quantile""Labels" parallelcoords (ax, …) plots into the axes ax.
The optional output h is a vector of handles to the plotted lines: one
per observation, or three per group when "Quantile" is used.
See also: andrewsplot, glyphplot, pca
Source Code: parallelcoords
Parallel coordinates plot of Fisher's iris data, grouped by species.
load fisheriris;
parallelcoords (meas, "Group", species, "Labels", ...
{"SL", "SW", "PL", "PW"});
The same data with median and quartile lines per species.
load fisheriris;
parallelcoords (meas, "Group", species, "Quantile", 0.25, ...
"Standardize", "on");