Answers for "how to drop multiple columns slicing pandas"

85

drop a column pandas

df.drop(['column_1', 'Column_2'], axis = 1, inplace = True)
Posted by: Guest on November-08-2020
18

drop multiple columns pandas

yourdf.drop(['columnheading1', 'columnheading2'], axis=1, inplace=True)
Posted by: Guest on May-16-2020

Code answers related to "how to drop multiple columns slicing pandas"

Python Answers by Framework

Browse Popular Code Answers by Language