Answers for "change the 2nd column name in pandas"

3

change specific column name pandas

df_new = df.rename(columns={'A': 'a'}) #change a from A
Posted by: Guest on May-21-2020
0

rename pandas columns with list of new names

df.columns = list_of_names
Posted by: Guest on November-23-2020

Code answers related to "change the 2nd column name in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language