ContextLab / hypertools

A Python toolbox for gaining geometric insights into high-dimensional data
http://hypertools.readthedocs.io/en/latest/
MIT License
1.83k stars 160 forks source link

Normalize=False by default? #66

Closed andrewheusser closed 7 years ago

andrewheusser commented 7 years ago

Currently, when calling:

hyp.plot(data)

the columns of the data matrix are z-scored by default, across lists. The user may or may not want to do this, so I propose we leave normalize=False by default. Then the user can easily normalize like so:

hyp.plot(data,normalize='across') # or within or row

jeremymanning commented 7 years ago

sure-- this sounds good to me...

andrewheusser commented 7 years ago

done and done