reset_index panda
df.reset_index(drop=True, inplace=True)
DS in Training
df.reset_index(drop=True, inplace=True)
>>> df.reset_index(drop=True)
class max_speed
0 bird 389.0
1 bird 24.0
2 mammal 80.5
3 mammal NaN
df.reset_index(drop=True)
import pandas as pd
# Reset index
df = df.reset_index()
# Display DataFrame
print(df)
How to convert index of a pandas dataframe into a column
df = df.reset_index(level=0)
df['index1'] = df.index
df.reset_index(
drop=True, # to avoid the old index being added as a column
inplace=False) # (default) return df with the new index, i.e. do not create a new object