-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
Implement vectorized, NA-friendly friendly string utils, a la R's stringr #620
Labels
Milestone
Comments
|
wesm
added a commit
that referenced
this issue
Jul 13, 2012
wesm
added a commit
that referenced
this issue
Jul 14, 2012
wesm
added a commit
that referenced
this issue
Jul 14, 2012
wesm
added a commit
that referenced
this issue
Jul 15, 2012
* string-methods: TST: added unit tests from PR #1179 and copied docstrings ENH: additional unicode handling ENH: don't repeat numerical types TST: mixed types for string methods ENH: finish docs TST: add testing module for string methods #620 ENH: continue filling out string methods + tests #620 ENH: get working on vectorized string methods #620
Better late than never. Excited to finish this feature |
dan-nadler
pushed a commit
to dan-nadler/pandas
that referenced
this issue
Sep 23, 2019
This makes `VersionedItem` backwards compatible, so any third-party libraries creating their own `VersionedItem`s won't be affected.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
cc @hammer, @arthurgerigk. Not sure when will be able to make this happen, but this would be a very nice addition. I've often found myself doing stuff like:
or various other forms of string munging / regex-processing.
Obviously that would fail if any of
df[col]
is NA. And having to write this kinda sucks:If multiple columns were involved in some kind of string processing exercise, you'd just want the whole operation to short circuit and be NA if an NA is encountered.
The text was updated successfully, but these errors were encountered: