-
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
Setting index name / names for Series #1079
Conversation
Codecov Report
@@ Coverage Diff @@
## master #1079 +/- ##
=======================================
Coverage 95.14% 95.14%
=======================================
Files 35 35
Lines 6958 6958
=======================================
Hits 6620 6620
Misses 338 338
Continue to review full report at Codecov.
|
@@ -958,13 +958,11 @@ def rename(self, index: Union[str, Tuple[str, ...]] = None, **kwargs): | |||
def index(self): | |||
"""The index (axis labels) Column of the Series. | |||
|
|||
Currently not supported when the DataFrame has no index. | |||
|
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.
+1
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.
Looks good otherwise.
Softagram Impact Report for pull/1079 (head commit: 8b6204c)
|
Unlike pandas,
koalas.Series
can't set the index name like below.For MultiIndex also
So, this PR suggests that make ours possible also.