Answers for "pandas dataframe and with 2 conditions"

1

python multiple conditions in dataframe column values

df.loc[(df['Salary_in_1000']>=100) & (df['Age']< 60) & (df['FT_Team'].str.startswith('S')),['Name','FT_Team']]
Posted by: Guest on August-25-2021
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 "pandas dataframe and with 2 conditions"

Python Answers by Framework

Browse Popular Code Answers by Language