Answers for "how to rename the columns in pandas dataframe"

15

pandas rename column

df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"}, inplace=True)
Posted by: Guest on June-09-2020
0

pandas rename column

df.rename({'current':'updated'},axis = 1, inplace = True)
Posted by: Guest on July-25-2021

Code answers related to "how to rename the columns in pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language