Answers for "how to add dropped column in python pandas"

1

removing features pandas

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

drop variable pandas

# pandas drop a column with drop function
gapminder_ocean.drop(['pop'], axis=1)
Posted by: Guest on June-15-2020

Code answers related to "how to add dropped column in python pandas"

Python Answers by Framework

Browse Popular Code Answers by Language