I want to change a dataframes\' index (rows) from float64 to string or unicode.
I thought this would work but apparently not:
#check type type(df.in
For python 3 and pandas 0.19 or latter versions, I found the following works fine for me
# Python 3 (pandas 0.19 or latter versions) df.index.astype(str, copy = False)