Answers for "delete row pandas dataframe"

8

drop columns pandas

df.drop(columns=['B', 'C'])
Posted by: Guest on March-23-2020
7

delete row from dataframe python

df.drop(df.index[-2])
df.drop(df.index[[3, 4]])
df.drop(['row_1', 'row_2'])
df.drop('column_1', axis=1)
df[df.name != 'cell']
Posted by: Guest on October-30-2020
4

drop a column in pandas

note: df is your dataframe

df = df.drop('coloum_name',axis=1)
Posted by: Guest on May-11-2020
0

remove rows from dataframe

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

Code answers related to "delete row pandas dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language