rename column pandas by index code example

Example 1: rename columns pandas

df.rename(columns={'oldName1': 'newName1',
                   'oldName2': 'newName2'},
          inplace=True, errors='raise')
# Make sure you set inplace to True if you want the change
# to be applied to the dataframe

Example 2: pandas rename index values

df.rename(index={'alpha': 'mu'})

Example 3: rename dataframe index column pandas

df.index.names = ['new_name']

Example 4: pandas rename column by index?

import pandas as pd 
  
# Sample DataFrame 
df = pd.DataFrame({'a': [1, 2], 'b': [3, 4]}) 
  
# Changing columns name with index number 
df.columns.values[0] = "b"
df.columns.values[1] = "a"
  
# Display 
display(df)

Example 5: rename column pandas

>>> df.rename(str.lower, axis='columns')
   a  b
0  1  4
1  2  5
2  3  6