Answers for "pandas delete row from 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
3

drop a column from dataframe

#working with "text" syntax for the columns:
df.drop(['column_nameA', 'column_nameB'], axis=1, inplace=True)
Posted by: Guest on August-25-2020
0

remove rows from dataframe

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

Code answers related to "pandas delete row from dataframe"

Python Answers by Framework

Browse Popular Code Answers by Language