drop a column from df in pandas code example
Example 1: df drop column
df = df.drop(['B', 'C'], axis=1)
Example 2: removing features pandas
df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
df = df.drop(['B', 'C'], axis=1)
df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)