I'm importing a CSV file which has the following header(column names):
"Appendix","Name / Organization","Issuer","Algorithm"
I tried changing the "Appendix" column name into "Other Info" but it doesn't work.
df.rename(columns={'Appendix':'Other Info'},
inplace=True)
I get no error and when I print the dataframe again, it looks like the original one. (nothing has changed). I don't understand why. Can you give me an idea?
Thank you!