Answers for "changing col names of a dataframe"

10

df change column names

df.rename(columns={"A": "a", "B": "b", "C": "c"},
errors="raise", inplace=True)
Posted by: Guest on March-12-2020

Code answers related to "changing col names of a dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language