pandas rename columns by index code example
Example 1: pandas rename column
df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"}, inplace=True)
Example 2: change column name df
>>> df = pd.DataFrame({"A": [1, 2, 3], "B": [4, 5, 6]})
>>> df.rename(columns={"A": "a", "B": "c"})
a c
0 1 4
1 2 5
2 3 6
Example 3: rename column pandas
df_new = df.rename(columns={'A': 'a'}, index={'ONE': 'one'})
print(df_new)
print(df)
Example 4: pandas rename index values
df.rename(index={'alpha': 'mu'})
Example 5: rename dataframe index column pandas
df.index.names = ['new_name']
Example 6: name columns pandas
>gapminder.columns = ['country','year','population',
'continent','life_exp','gdp_per_cap']