Answers for "pandas brop"

5

df drop column

df = df.drop(['B', 'C'], axis=1)
Posted by: Guest on June-02-2020
2

dataframe delete row

df.drop(df.index[2])
Posted by: Guest on May-26-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