update index pandas dataframe 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()
index = [1,2]
df.index = index
#cree un indice par defaut sur la base de donnee
df.reset_index()