Answers for "drop item in pandas dataframe"

6

python drop axis

df.drop(['colonna da togliere'], axis=1)
Posted by: Guest on April-06-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 "drop item in pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language