🎉Community Raffle - Win $25

An exclusive raffle opportunity for active members like you! Complete your profile, answer questions and get your first accepted badge to enter the raffle.
Join and Win

How to create a filter contains AND/OR clauses

User: "FouadKayali"
New Altair Community Member
Updated by Jocelyn
I want to remove outliers based on the market segements, different market segment has different ranges of prices, so I want to filter based on both attributes for example 
(Market segment = online and price > 500) or (Market segment = offline and price > 1000)

Find more posts tagged with

Sort by:
1 - 2 of 21
    User: "hmhsing"
    Altair Community Member
    You may try the attached process using Titanic data from RapidMiner Samples.
    User: "hmhsing"
    Altair Community Member
    An easier way is to select expression in Filter Example condition class and write   

    Price>500&&contains(Market segment,"online")||Price>1000&&contains(Market segment,"offline") 

    in parameter expression.  I hope this will work!