Posts by Maria Girlene • 1 point
1 post
-
0
votes6
answers19845
viewsA: How to change the name of the pandas dataframe column?
You just forgot to put Unique = True at the end. df.Rename(Columns={'name': 'full name'}, Unique = True) That way it’ll work!!