-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
ENH: add StringMethods (e.g. .str) to Index #9068
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
Labels
Milestone
Comments
17 tasks
mortada
added a commit
to mortada/pandas
that referenced
this issue
Mar 17, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 1, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 2, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 2, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 6, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 6, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 6, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 6, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 8, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 8, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 8, 2015
mortada
added a commit
to mortada/pandas
that referenced
this issue
Apr 10, 2015
jreback
added a commit
that referenced
this issue
Apr 10, 2015
ENH: add StringMethods (.str accessor) to Index, fixes #9068
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
currently
Series.str.strip()
worksbut
Index(Series(Index.values).str.strip())
would be necessary for an indexshould be very straightforward to move the
.str
accessor toIndexOpsMixin
(from Series)to support this (would need to prevent Index sub-classes from using it though as they don't support string ops.
The text was updated successfully, but these errors were encountered: