Answers for "python pandas remove column of index"

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

remove column by index

df.drop(list(df)[2:5], axis=1)
Posted by: Guest on August-13-2021

Code answers related to "python pandas remove column of index"

Python Answers by Framework

Browse Popular Code Answers by Language