drop column names pandas code example
Example 1: removing features pandas
df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
Example 2: how to delete a column from a dataframe in python
del df['column']
df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
del df['column']