Изменить индекс DataFrame с помощью списка
#Python 3
#Declare list of index
#and just assign it to the existing dataframe
separate_list = [1,2,3,4,5]
df.index = separate_list
NotACoder