Answers for "python drop index column"

1

python pandas drop column by index

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

pandas df remove index

df = df.reset_index(drop=True)
Posted by: Guest on November-11-2020
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
1

pandas drop column by index range

# drop columns 0 to 3
droprange = list(range(0, 4))
df.drop(df.columns[droprange], axis=1, inplace=True)
Posted by: Guest on May-18-2021

Python Answers by Framework

Browse Popular Code Answers by Language