hvplot.plotting.parallelcoordinates#

hvplot.plotting.parallel_coordinates(data, class_column, cols=None, alpha=0.5, width=600, height=300, var_name='variable', value_name='value', cmap=None, colormap=None, **kwds)[source]#

Parallel coordinates plotting.

To show a set of points in an n-dimensional space, a backdrop is drawn consisting of n parallel lines. A point in n-dimensional space is represented as a polyline with vertices on the parallel axes; the position of the vertex on the i-th axis corresponds to the i-th coordinate of the point.

Parameters:
frameDataFrame

The DataFrame to be plotted.

class_columnstr

Column name containing class names

colslist, optional

A list of column names to use

alphafloat, optional

The transparency of the lines

cmap/colormapstr or colormap object

Colormap to use for groups

Returns:
objHoloViews object

The HoloViews representation of the plot.

See also

pandas.plotting.parallel_coordinates

matplotlib version of this routine

Examples#

TBD

This web page was generated from a Jupyter notebook and not all interactivity will work on this website.