-
Notifications
You must be signed in to change notification settings - Fork 358
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
Add NamedAgg #911
Add NamedAgg #911
Conversation
Codecov Report
@@ Coverage Diff @@
## master #911 +/- ##
=========================================
+ Coverage 94.28% 94.3% +0.01%
=========================================
Files 34 34
Lines 6265 6355 +90
=========================================
+ Hits 5907 5993 +86
- Misses 358 362 +4
Continue to review full report at Codecov.
|
@@ -40,6 +40,7 @@ def assert_pyspark_version(): | |||
from databricks.koalas.series import Series | |||
from databricks.koalas.typedef import pandas_wraps | |||
from databricks.koalas.config import get_option, set_option, reset_option, options | |||
from databricks.koalas.groupby import NamedAgg |
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.
Can we add it to __all__
?
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.
thanks! added!
Softagram Impact Report for pull/911 (head commit: 3a8c93c)⭐ Change Overview
📄 Full report
Impact Report explained. Give feedback on this report to [email protected] |
Thanks @charlesdong1991! |
This is equivalent to nested renaming, so like pandas, we have
koalas.NamedAgg
now for this:Resolves #823