Answers for "df drop multiple columns for new dataframe but save old dataframe"

21

drop multiple columns pandas

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

Code answers related to "df drop multiple columns for new dataframe but save old dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language