-
-
Notifications
You must be signed in to change notification settings - Fork 1k
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
[ENH] Lazy signals for Hierarchical Clustering #6348
Conversation
@janezd, could you rebase this? Also, biolab/orange-widget-base/pull/238 was released in widget-base 4.21.0, so if we change requirements, this PR can be merged. |
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## master #6348 +/- ##
=======================================
Coverage 87.68% 87.69%
=======================================
Files 321 321
Lines 69406 69429 +23
=======================================
+ Hits 60859 60885 +26
+ Misses 8547 8544 -3 |
@@ -129,11 +131,11 @@ def b(s): | |||
|
|||
def missing_values(value): | |||
if value: | |||
return f'({value*100:.1f}% missing values)' | |||
return f' ({value*100:.1f}% missing values)' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume no one calls this externally, and moving a space inside won't be a problem. But I am curious why did you do so.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Because of space-nazism. We had f'Features: {features} {features_missing}'
where features_missing
could be an empty string, resulting in a space at the end of the line. I wouldn't be able to sleep knowing that.
3f4df37
to
2fc2717
Compare
Issue
Ref. #5720.
Includes