Answers for "how to delete row in dataframe pandas"

3

drop a column from dataframe

df = df.drop('column_name', 1)
Posted by: Guest on August-25-2020
3

pandas dataframe delete column

del df['column_name']
Posted by: Guest on June-29-2020
0

remove rows from dataframe

df.drop(['Cochice', 'Pima'])
Posted by: Guest on August-23-2020

Code answers related to "how to delete row in dataframe pandas"

Python Answers by Framework

Browse Popular Code Answers by Language