Answers for "how to delete the index column in pandas"

1

python pandas drop column by index

df.drop(a_dataframe.columns[0], axis=1, inplace=True)
Posted by: Guest on May-09-2021
4

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
Posted by: Guest on July-30-2020

Code answers related to "how to delete the index column in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language