Answers for "how to change a column name in dataframe in python"

4

renaming headers pandasd

df = df.rename(columns={"old_col1": "new_col1", "old_col2": "new_col2"})
Posted by: Guest on October-03-2020

Code answers related to "how to change a column name in dataframe in python"

Python Answers by Framework

Browse Popular Code Answers by Language