remove index from df python code example
Example 1: how to drop the index column in pandas
df.reset_index(drop=True, inplace=True)
Example 2: how to remove some indexes from a dataframe in python
>>> df.drop(index='cow', columns='small')
big
lama speed 45.0
weight 200.0
length 1.5
falcon speed 320.0
weight 1.0
length 0.3