Answers for "python dataframe change one column name"

1

rename one dataframe column python

#suppy as dict the column name to replace
df1 = df.rename(columns={'Name': 'EmpName'})
print(df1)
Posted by: Guest on May-30-2021

Code answers related to "python dataframe change one column name"

Python Answers by Framework

Browse Popular Code Answers by Language