Answers for "select rows from a dataframe based on multiple conditions of a column in pandas"

6

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']]
Posted by: Guest on June-20-2020

Code answers related to "select rows from a dataframe based on multiple conditions of a column in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language