Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

select rows with multiple conditions pandas query

df.loc[(df['Salary_in_1000']>=100) & (df['Age']< 60) & (df['FT_Team'].str.startswith('S')),['Name','FT_Team']]
Source by kanoki.org #
 
PREVIOUS NEXT
Tagged: #select #rows #multiple #conditions #pandas #query
ADD COMMENT
Topic
Name
3+3 =