I\'d like to create a new column to a Pandas dataframe populated with True or False based on the other values in each specific row. My approach to solve this task was to app
In your current setup, just re-write your function like this:
def ops_on(row): return (row['Feed'] > 10) & (row['Pressure'] > 10) & (row['Temp'] > 10)