pandas remove index code example

Example 1: how to drop the index column in pandas

df.reset_index(drop=True, inplace=True)

Example 2: reset_index pandas

df.reset_index(drop=True, inplace=True)

Example 3: delete index in df

>>> df.reset_index(drop=True)
    class  max_speed
0    bird      389.0
1    bird       24.0
2  mammal       80.5
3  mammal        NaN

Example 4: reset index pandas

df.reset_index(drop=True)

Example 5: pandas df remove index

df = df.reset_index(drop=True)

Example 6: how to drop the index column in pandas

df.reset_index(drop=True)