Answers for "delete column dataframe pytnhon"

3

drop a column from dataframe

#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Posted by: Guest on August-25-2020
0

remove a column from dataframe

del df['column_name'] #to remove a column from dataframe
Posted by: Guest on July-20-2020

Code answers related to "delete column dataframe pytnhon"

Python Answers by Framework

Browse Popular Code Answers by Language