Answers for "how to filter a dataframe with multiple conditions in R"

5

filter dataframe multiple 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 "how to filter a dataframe with multiple conditions in R"

Python Answers by Framework

Browse Popular Code Answers by Language