how to change the index of dataframe in python code example
Example 1: how to change index in dataframe python
index = [1,2]
df.index = index
Example 2: change index to dataframe pandas
#cree un indice par defaut sur la base de donnee
df.reset_index()