-
-
Notifications
You must be signed in to change notification settings - Fork 403
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
Improve groupby behavior for operation histogram #6172
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #6172 +/- ##
==========================================
+ Coverage 88.68% 88.70% +0.01%
==========================================
Files 316 316
Lines 66072 66117 +45
==========================================
+ Hits 58598 58649 +51
+ Misses 7474 7468 -6
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
@@ -754,6 +755,9 @@ class histogram(Operation): | |||
groupby = param.ClassSelector(default=None, class_=(str, Dimension), doc=""" | |||
Defines a dimension to group the Histogram returning an NdOverlay of Histograms.""") | |||
|
|||
groupby_range = param.Selector(default="shared", objects=["shared", "separated"], doc=""" |
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.
Better names here are welcome.
Co-authored-by: Philipp Rudiger <prudiger@anaconda.com>
This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
Fixes #6170
Fixes #6171
TODO: