I'm trying to rename the index of a series libor
I have from DATE to Date:
libor.rename(index={"DATE": "Date"})
The result is unforunately the same as it went in though:
VALUE
DATE
1986-01-02 8.12500
1986-01-03 8.12500
1986-01-06 8.18750
I was hoping that 'DATE' would become 'Date'. I'm trying to multiply it with a Dataframe with a 'Date' index, on a column-by-column basis.
How can I rename the index?