Answers for "how to rename the column in pandas by the first row elements"

0

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
0

rename column in pandas with second row

In [23]: df.columns = df.iloc[1]
Posted by: Guest on September-13-2021

Code answers related to "how to rename the column in pandas by the first row elements"

Python Answers by Framework

Browse Popular Code Answers by Language