Answers for "remove columns in df"

85

drop a column pandas

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

cannot remove column in pandas

df.drop(columns='column_name', inplace=True)
Posted by: Guest on October-03-2021
3

pandas dataframe delete column

del df['column_name']
Posted by: Guest on June-29-2020

Python Answers by Framework

Browse Popular Code Answers by Language