Answers for "how to apply a multiple conditional function in dataframe in python"

8

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
0

mutiple condition in dataframe

df[(df['Salary_in_1000']>=100) & (df['Age']<60) & df['FT_Team'].str.startswith('S')][['Name','Age','Salary_in_1000']]
Posted by: Guest on October-03-2021

Code answers related to "how to apply a multiple conditional function in dataframe in python"

Python Answers by Framework

Browse Popular Code Answers by Language