-
Notifications
You must be signed in to change notification settings - Fork 73
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
Follow-up aggregators implementation #445
Conversation
Codecov Report
@@ Coverage Diff @@
## master #445 +/- ##
==========================================
- Coverage 86.09% 85.95% -0.15%
==========================================
Files 340 340
Lines 17850 17915 +65
==========================================
+ Hits 15368 15398 +30
- Misses 2482 2517 +35
Continue to review full report at Codecov.
|
92b7b99
to
f50ae5e
Compare
There were couple of missing things in the community PR for the aggregators. This is an attempt to fix those. Namely, - Some missing aggreagators are added (distinct, min_by, max_by). For them, some identified factories are also added, as they have different return values. - Aggregator module is added to the API documentation - A code sample is added - Docstrings are updated - Documentation is updated and corrected
f50ae5e
to
f9428fc
Compare
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.
LGTM, left some minor comments
There were couple of missing things in the community PR for the
aggregators. This is an attempt to fix those. Namely,
For them, some identified factories are also added, as they
have different return values.