pandas.plotting.
parallel_coordinates
Parallel coordinates plotting.
Column name containing class names.
A list of column names to use.
Matplotlib axis object.
Colors to use for the different classes.
If true, columns will be used as xticks.
A list of values to use for xticks.
Colormap to use for line colors.
If true, vertical lines will be added at each xtick.
Options to be passed to axvline method for vertical lines.
Sort class_column labels, useful when assigning colors.
Options to pass to matplotlib plotting method.
Examples
>>> from matplotlib import pyplot as plt >>> df = pd.read_csv('https://raw.github.com/pandas-dev/pandas/master' '/pandas/tests/data/csv/iris.csv') >>> pd.plotting.parallel_coordinates( df, 'Name', color=('#556270', '#4ECDC4', '#C7F464')) >>> plt.show()