Created
October 4, 2017 23:35
-
-
Save smram/d6ded3c9028272360eb65bcab564a18a to your computer and use it in GitHub Desktop.
[pandas] replace newlines,tabs,carriage returns in fields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# got to handle both escaped and literal | |
df.replace(to_replace=[r"\\t|\\n|\\r", "\t|\n|\r"], value=["",""], regex=True, inplace=<INPLACE>) |
what values needs to be passed at 'inplace'
@hargurjeet inplace is a Boolean, True will replace in place, False will return a new value. https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.replace.html?highlight=replace#pandas.DataFrame.replace
This is great! It is becoming part of the standard data wrangling that I do!
can you break down this code or provide a reference? Thank you!
This also worked for me! And I had also tried many suggestions from StackOverflow that did not work. Thank you!
I got typeError: Cannot compare types 'ndarray(dtype=int64)' and 'str'
on one of the rows in the database table
with inplace=False worked like a charmed, with =True it didn't let me do the "to_CSV". anyway, problem solved!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!!!