Calmcode - hiplot: parallel coordinates

Parallel Coordinates

1 2 3 4 5

Let's give a simple demonstration of how hiplot visualises data. We'll use the penguins dataset for this purposes.

Again, to load the data, run the code below.

from sklego.datasets import load_penguins

df = load_penguins(as_frame=True)

To run the interactive tool locally, run;

import hiplot as hip
data = df.to_dict(orient='records')

hip.Experiment.from_iterable(data).display()