Answers for "change header of a column in 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

rename dataframe index column pandas

df.index.names = ['new_name']
Posted by: Guest on August-21-2020

Code answers related to "change header of a column in dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language