where condition in pandas code example
Example 1: or condition in pandas
df2 = df[(df.a != -1) | (df.b != -1)]
Example 2: or condition in pandas
df1 = df[(df.a != -1) & (df.b != -1)]
Example 3: conditions in pandas dataframe
from pandas import DataFrame
names = {'First_name': ['Hanah', 'Ria', 'Jay', 'Bholu', 'Sachin']}
df = DataFrame(names, columns =['First_name'])
df['Status'] = df['First_name'].apply(lambda x: 'Found' if x == 'Ria' else 'Not Found')
print (df)
Example 4: new dataframe based on certain row conditions
american = df['nationality'] == "USA"
elderly = df['age'] > 50
df[american & elderly]