Answers for "how to drop a variable in a column in pandas dataframe df"

2

remove column from dataframe

df.drop('column_name', axis=1, inplace=True)
Posted by: Guest on June-02-2020
1

removing features pandas

df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
Posted by: Guest on May-22-2020

Code answers related to "how to drop a variable in a column in pandas dataframe df"

Python Answers by Framework

Browse Popular Code Answers by Language