facebookresearch / hiplot

HiPlot makes understanding high dimensional data easy
https://facebookresearch.github.io/hiplot/
MIT License
2.75k stars 143 forks source link

hip.Experiment.from_iterable adds additional uid column #183

Closed qo4on closed 3 years ago

qo4on commented 3 years ago

In your Colab example hip.Experiment.from_iterable adds additional uid column. Is it possible to remove it?

image

qo4on commented 3 years ago

I found a fix:

exp = hip.Experiment.from_iterable(results)
exp.display_data(hip.Displays.PARALLEL_PLOT).update({'hide': ['uid']})
exp.display();

A bit inconvenient, but anyway HiPlot is very nice, thanks.

danthe3rd commented 3 years ago

Hi Yes indeed that's something that has come up a lot, and your solution is the right way to fix it for now. It's useful to identify rows uniquely - but for basic use-cases it makes it less clear. I'm thinking about hiding it by default if not specified in the source data.