Parallel PlotsΒΆ

Parallel Plot with Random Data
from dewloosh.mpl import parallel
import numpy as np

colors = np.random.rand(150, 3)
labels = [str(i) for i in range(10)]
values = [np.random.rand(150) for _ in range(10)]
parallel(values, labels=labels, padding=0.05, lw=0.2,
         colors=colors, title='Parallel Plot with Random Data')

Total running time of the script: ( 0 minutes 1.655 seconds)

Estimated memory usage: 14 MB

Gallery generated by Sphinx-Gallery