Answers for "how to rename the data in dataframe python"

0

rename dataframe index column pandas

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

df reanme columns

df_org = df.copy()
df_org.rename(columns={'A': 'a'}, index={'ONE': 'one'}, inplace=True)
print(df_org)
#         a   B   C
# one    11  12  13
# TWO    21  22  23
# THREE  31  32  33
Posted by: Guest on September-23-2020

Code answers related to "how to rename the data in dataframe python"

Python Answers by Framework

Browse Popular Code Answers by Language