Answers for "how to drop rows based on a condition"

2

delete rows based on condition python

df = df.drop(df[df.score < 50].index)
Posted by: Guest on April-07-2021
1

delete rows based on condition python

df.drop(df[df.score < 50].index, inplace=True)
Posted by: Guest on April-07-2021

Code answers related to "how to drop rows based on a condition"

Python Answers by Framework

Browse Popular Code Answers by Language