Answers for "df1=df1.drop(*column drop)"

6

python drop axis

df.drop(['colonna da togliere'], axis=1)
Posted by: Guest on April-06-2020
5

df drop column

df = df.drop(['B', 'C'], axis=1)
Posted by: Guest on June-02-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

Python Answers by Framework

Browse Popular Code Answers by Language