-
-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
modify _Clustergram._scale function #423
modify _Clustergram._scale function #423
Conversation
@illumination-k Could you please post the code that was causing you to get the error (as well as the error itself)? |
This is my code, and only edit Default Clustergram, adding standadrize option. code
error log
|
@shammamah Our internal method dash-bio/dash_bio/component_factory/_clustergram.py Lines 715 to 718 in 6ca6b8a
So this fix might not be sufficient, but it's at least necessary. |
@illumination-k Good catch :) Could you please add an entry in the CHANGELOG? |
@shammamah Do you mind if I sync up, merge, and submit a matching CHANGELOG entry right afterwards? This tiny PR has been open for too long... |
@mkcor Yes, please do! We can also probably release this as a patch version. |
@shammamah Ok, thanks! But we first need #443 to pass... |
About
Description of changes
When using standarize, Clustergram.scale(self, dim), but using self.scale, self.scale(self._data, standarize) and occured error. So, I simply delete self._data.
Before merging