Pandas deleting row with df.drop doesn't work Pandas deleting row with df.drop doesn't work python-3.x python-3.x

Pandas deleting row with df.drop doesn't work


While dropping new DataFrame returns. If you want to apply changes to the current DataFrame you have to specify inplace parameter.

Option 1
Assigning back to df -

df = df.drop(790)

Option 2
Inplace argument -

df.drop(790, inplace=True)