Question
Asked By – Spike Williams
I am parsing data from an Excel file that has extra white space in some of the column headings.
When I check the columns of the resulting dataframe, with df.columns
, I see:
Index(['Year', 'Month ', 'Value'])
^
# Note the unwanted trailing space on 'Month '
Consequently, I can’t do:
df["Month"]
Because it will tell me the column is not found, as I asked for “Month”, not “Month “.
My question, then, is how can I strip out the unwanted white space from the column headings?
Now we will see solution for issue: How can I strip the whitespace from Pandas DataFrame headers?
Answer
You can give functions to the rename
method. The str.strip()
method should do what you want:
In [5]: df
Out[5]:
Year Month Value
0 1 2 3
[1 rows x 3 columns]
In [6]: df.rename(columns=lambda x: x.strip())
Out[6]:
Year Month Value
0 1 2 3
[1 rows x 3 columns]
Note: that this returns a DataFrame
object and it’s shown as output on screen, but the changes are not actually set on your columns. To make the changes, either use this in a method chain or re-assign the df
variabe:
df = df.rename(columns=lambda x: x.strip())
This question is answered By – TomAugspurger
This answer is collected from stackoverflow and reviewed by FixPython community admins, is licensed under cc by-sa 2.5 , cc by-sa 3.0 and cc by-sa 4.0