-
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 DataFrame.items (alias of iteritems) #787
Conversation
Codecov Report
@@ Coverage Diff @@
## master #787 +/- ##
==========================================
+ Coverage 94.28% 94.28% +<.01%
==========================================
Files 32 32
Lines 5770 5774 +4
==========================================
+ Hits 5440 5444 +4
Misses 330 330
Continue to review full report at Codecov.
|
Tests passed |
d9aafec
to
ce97ce3
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.
databricks/koalas/frame.py
Outdated
@@ -958,6 +958,10 @@ def iteritems(self): | |||
cols = list(self.columns) | |||
return list((col_name, self[col_name]) for col_name in cols) | |||
|
|||
def items(self): |
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.
nit: -> Iterable
?
Softagram Impact Report for pull/787 (head commit: 9e635b6)⭐ Change Overview
📄 Full report
Impact Report explained. Give feedback on this report to [email protected] |
No description provided.