Answers for "drop a column in dataframe pandas"

1

removing features pandas

df.drop([‘feature_1’,’feature_2’], inplace = True, axis = 1)
Posted by: Guest on May-22-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 "drop a column in dataframe pandas"

Python Answers by Framework

Browse Popular Code Answers by Language