pandas dataframe colum rename code example
Example 1: pandas rename column
df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"}, inplace=True)
Example 2: rename column pandas
>>> df.rename({1: 2, 2: 4}, axis='index')
A B
0 1 4
2 2 5
4 3 6