facebookresearch / hiplot

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

How to modify the scale of axis? #256

Closed rrrgggccc closed 1 year ago

rrrgggccc commented 1 year ago

Hello! I wonder how to fix all feature scales as [0,1]. Is it possible to achieve that? Many thanks. image

danthe3rd commented 1 year ago

Hi @rrrgggccc

You can force a minimum/maximum value for arbitrary features - see the corresponding doc. Something like that should work for you

exp.parameters_definition["mbsc"].force_range(0, 1)
rrrgggccc commented 1 year ago

Thank u so much for your kind help!