Answers for "select rows in dataframe that met two conditions"

5

how to slicing dataframe using two conditions

# when you wrap conditions in parantheses, you give order
# you do those in brackets first before 'and'
# AND
movies[(movies.duration >= 200) & (movies.genre == 'Drama')]
Posted by: Guest on March-21-2020

Code answers related to "select rows in dataframe that met two conditions"

Python Answers by Framework

Browse Popular Code Answers by Language